ETH Price: $3,362.18 (-1.60%)
Gas: 9 Gwei

Token

Karma (KARMA)
 

Overview

Max Total Supply

13,194 KARMA

Holders

2,861

Market

Volume (24H)

0.3 ETH

Min Price (24H)

$1,008.65 @ 0.300000 ETH

Max Price (24H)

$1,008.65 @ 0.300000 ETH

Other Info

Filtered by Token Holder
scojo.eth
Balance
1 KARMA
0xC29398148b9ACEC3e23F43d26Fa6F57cc0355a6E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Karma is the OnChainMonkey membership NFT.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Karma

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 15 : Karma.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

interface IOCMKarmaVIPAllowList {
    // burn a Karma VIP Allow List for burnTokenAddress (ie account)
    function burnAllowListForAddress(address burnTokenAddress) external;
    function balanceOf(address account, uint256 id) external view returns (uint256);
}

interface IOCMDesserts {
    // typeId is dessertType
    function burnDessertForAddress(uint256 typeId, address burnTokenAddress) external;
    // id is dessertType
    function balanceOf(address account, uint256 id) external view returns (uint256);
}

interface IOnChainMonkey {
    function ownerOf(uint256 tokenId) external view returns (address);
}

interface IOCMRenderingContract {
    function tokenURI(uint256 tokenId, uint256 offset) external view returns (string memory);
}


import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

//
//
//  888    d8P                                          
//  888   d8P                                           
//  888  d8P                                            
//  888d88K      8888b.  888d888 88888b.d88b.   8888b.  
//  8888888b        "88b 888P"   888 "888 "88b     "88b 
//  888  Y88b   .d888888 888     888  888  888 .d888888 
//  888   Y88b  888  888 888     888  888  888 888  888 
//  888    Y88b "Y888888 888     888  888  888 "Y888888 
//                                                    
//                                                    
// Karma is the OnChainMonkey membership NFT
//
// Welcome to the Monkeyverse!
//

contract Karma is ERC721Enumerable, ReentrancyGuard, Ownable {

    uint256 private constant DESSERT3_TYPE = 3;
    uint256 private constant MAX_KARMA3_ID = 30015; // via Dessert3, 5 K3 are from mint in 1-10000
    uint256 private nextKarma3Id = 30001; // next mint, does not exist yet
    uint256 private constant PUBLIC_MINT_SIZE = 10000;
    uint256 public maxMintPerAllowList = 2;
    uint256 private constant MAX_PUBLIC_MINT_PER_TXN = 10;

    uint256 public salePrice = 0.5 ether;
    uint256 private constant EATING_PRICE = 0.03 ether;
    uint256 public numKarmasMintedPublicMint  = 0; // Number of Minted Karmas (not from Desserts) by Public
    uint256 public numKarmasMintedManagerMint = 0; // Number of Minted Karmas (not from Desserts) by MintManager
    // numKarmasMintedPublicMint + numKarmasMintedManagerMint <= PUBLIC_MINT_SIZE

    uint256 public nextMintManagerTokenId = 10000; // next tokenId that mintManager will mint, only decrementing
    uint256 public minimumMintManagerTokenId = 9001; // minimum tokenId that mintManager can mint, 1000 allocated initally
    uint256 public randomOffset = 10000; // if set, 0-9999, 10000 is unset
    bytes32 private merkleRoot;

    bool public allowListNFTActive      = false;
    bool public allowListActive         = false;
    bool public publicSaleActive        = false;
    bool public dessertEatingActive     = false;
    bool public freeDessertEatingActive = false;    

    address public randomizerContract; // set in constructor, used for randomOffset
    address public mintManager; // can mint from the end
    address public missionManager; // can modify level
    address public daoAddress; 
    address public providerAddress;

    IOnChainMonkey private immutable ocm;
    IOCMDesserts private immutable dessert;
    IOCMKarmaVIPAllowList private immutable allowListNFT;
    IOCMRenderingContract private renderingContract;
    bool public renderingContractLocked = false;
    
    mapping(address => uint256) public earlyDessertList;
    mapping(address => uint256) private minted; // with allowlist

    mapping(uint256 => uint256) private ocmToKarma3;

    mapping(uint256 => uint256) public karmaLevel;
    mapping(uint256 => uint256) public genesisLevel;

    // tokenId mappings
    // 
    // Dessert Karma
    //   Karma1: 10001-20000
    //   Karma2: 20001-30000
    //   Karma3: 30001-30015
    //
    // Public Mint Karma: 1-10000 (contains 5 Karma3 too)
    //
    // mintManager can mint from 10000, decrementing

    modifier onlyMissionManager() {
        require(missionManager == _msgSender(), "caller is not mission manager");
        _;
    }

    modifier onlyMintManager() {
        require(mintManager == _msgSender(), "caller is not mint manager");
        _;
    }    

    modifier onlyDao() {
        require(daoAddress == _msgSender(), "caller is not DAO");
        _;
    }

    modifier whenAllowListNFTActive() {
        require(allowListNFTActive, "Allow list NFT is not active");
        _;
    }

    modifier notSmartContract() {
        require(msg.sender == tx.origin, "You cannot mint from smart contract");
        _;
    }

    event DessertEaten(uint256 karmaId, address eaterAddress);

    constructor(address ocmAddress, address dessertAddress, address allowListNFTAddress, 
            address randomizerAddress, address renderingAddress) ERC721("Karma", "KARMA") {
        ocm = IOnChainMonkey(ocmAddress);
        dessert = IOCMDesserts(dessertAddress);
        allowListNFT = IOCMKarmaVIPAllowList(allowListNFTAddress);
        renderingContract = IOCMRenderingContract(renderingAddress);
        randomizerContract = randomizerAddress; // set once only
        missionManager = msg.sender;
        mintManager = msg.sender;
    }

    //
    // 5 mint commands (external)
    //

    function mintManagerMint(address toAddress) external onlyMintManager {
        require(nextMintManagerTokenId >= minimumMintManagerTokenId, "not allocated for mint manager");
        _safeMint(toAddress, nextMintManagerTokenId);
        nextMintManagerTokenId--;
        numKarmasMintedManagerMint++;
    }

    function mintManagerMintQuantity(address toAddress, uint256 quantity) external onlyMintManager {
        require(nextMintManagerTokenId+1-quantity >= minimumMintManagerTokenId, "not allocated for mint manager");
        for(uint256 i=0; i<quantity; i++) {
            _safeMint(toAddress, nextMintManagerTokenId);
            nextMintManagerTokenId--;
        }
        numKarmasMintedManagerMint+=quantity;
    }

    function generalMint(uint256 numKarmas, bytes32[] calldata merkleProof) external payable nonReentrant notSmartContract {
        require(numKarmasMintedPublicMint + numKarmasMintedManagerMint + numKarmas <= PUBLIC_MINT_SIZE, "Minting exceeds max supply");
        require(numKarmas > 0, "Must mint > 0");
        require((salePrice * numKarmas) <= msg.value, "ETH not enough");
        require(numKarmasMintedPublicMint + numKarmas < minimumMintManagerTokenId, "reserved");
        if (publicSaleActive) {
            require(numKarmas <= MAX_PUBLIC_MINT_PER_TXN, "Exceeds max mint");
        } else {
            require(allowListActive, "Allow list is not active");
            require(onAllowList(msg.sender, merkleProof), "Not on allow list");
            require(minted[msg.sender] + numKarmas <= maxMintPerAllowList, "Exceeds max mint");
            minted[msg.sender] += numKarmas;
        }
        for (uint256 i = numKarmasMintedPublicMint + 1; i <= numKarmasMintedPublicMint + numKarmas; i++) {
            _safeMint(msg.sender, i);
        }
        numKarmasMintedPublicMint += numKarmas;  
    }

    // mint with Karma VIP Allow List NFT
    function allowListNFTMint() external payable whenAllowListNFTActive nonReentrant notSmartContract {
        require(allowListNFT.balanceOf(msg.sender, 1) > 0, "You do not have a Karma Allow List NFT");
        require(numKarmasMintedPublicMint + numKarmasMintedManagerMint < PUBLIC_MINT_SIZE, "Minting exceeds max supply");
        require(numKarmasMintedPublicMint + 1 < minimumMintManagerTokenId, "reserved for mint manager");
        require(salePrice <= msg.value, "ETH not enough");
        allowListNFT.burnAllowListForAddress(msg.sender);
        numKarmasMintedPublicMint++;
        _safeMint(msg.sender, numKarmasMintedPublicMint);
    }
 
    // dessertType is 1-3
    // monkeyId is 1-10000 
    function eatDessert(uint256 dessertType, uint256 monkeyId) external payable nonReentrant {
        require(dessertEatingActive, "Dessert is not served yet");
        require(ocm.ownerOf(monkeyId) == msg.sender, "You are not the owner of the monkey");
        require(dessert.balanceOf(msg.sender, dessertType) > 0, "You do not have the dessert");

        uint256 karmaId;
        if (dessertType == DESSERT3_TYPE) {
            require(nextKarma3Id <= MAX_KARMA3_ID, "No more Dessert3");
            require(ocmToKarma3[monkeyId] == 0, "Monkey already ate cake");
            karmaId = nextKarma3Id;
            ocmToKarma3[monkeyId] = karmaId;
            nextKarma3Id++;
        } else {
            karmaId = getKarmaId(dessertType, monkeyId);
            require(!_exists(karmaId), "Monkey already ate this type of dessert");
        }

        if (!freeDessertEatingActive) {
             if (earlyDessertList[msg.sender] > 0) {
                 earlyDessertList[msg.sender]--;
             } else {
                 require(EATING_PRICE <= msg.value, "ETH not enough");
             }
        }
        dessert.burnDessertForAddress(dessertType, msg.sender);
        _safeMint(msg.sender, karmaId);
        emit DessertEaten(karmaId, msg.sender); // need to listen and load image
    }

    //
    // Owner functions
    //    

    function setEarlyDessertList(address[] calldata addresses, uint256[] calldata quantity) external onlyOwner {
        for(uint256 i=0; i<addresses.length;i++) {
            earlyDessertList[addresses[i]] = quantity[i];
        }
    }

    function toggleDessertEatingActive() external onlyOwner {
        dessertEatingActive = !dessertEatingActive;
    }

    function setSalePrice(uint256 newSalePrice) external onlyOwner {
        salePrice = newSalePrice;
    }

    function setMaxMintPerAllowList(uint256 newMax) external onlyOwner {
        maxMintPerAllowList = newMax;
    }

    function toggleAllowListActive() external onlyOwner {
        allowListActive = !allowListActive;
    }

    function toggleAllowListNFTActive() external onlyOwner {
        allowListNFTActive= !allowListNFTActive;
    }

    function togglePublicSaleActive() external onlyOwner {
        publicSaleActive = !publicSaleActive;
    }

    // Enable on Sept 11, 2022
    function toggleFreeDessertEatingActive() external onlyOwner {
        freeDessertEatingActive = !freeDessertEatingActive;
    }

    function setMinimumMintManagerTokenId(uint256 karmaId) external onlyOwner {
        minimumMintManagerTokenId = karmaId;
    }

    function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner {
        merkleRoot = newMerkleRoot;
    }

    function setMintManager(address newAddress) external onlyOwner {
        mintManager = newAddress;
    }

    function setMissionManager(address newAddress) external onlyOwner {
        missionManager = newAddress;
    }

    function setDaoAddress(address newAddress) external onlyOwner {
        daoAddress = newAddress;
    }

    function setProviderAddress(address newAddress) external onlyOwner {
        providerAddress = newAddress;
    }

    // can only call once for Karma randomization for new 10000
    function setRandomOffset(uint256 offset) external onlyOwner {
        require(randomOffset >= 10000, "offset already set");
        randomOffset = offset % PUBLIC_MINT_SIZE;
    }

    function setRenderingContract(address renderingAddress) external onlyOwner {
        require(!renderingContractLocked, "renderContract locked");
        renderingContract = IOCMRenderingContract(renderingAddress);
    } 

    function lockRenderingContract() external onlyOwner {
        renderingContractLocked = true;
    }

    function ownerWithdraw() external onlyOwner nonReentrant {
        Address.sendValue(payable(owner()), address(this).balance);
    }

    function daoWithdraw() external onlyDao nonReentrant {
        uint256 value = address(this).balance/2;
        Address.sendValue(payable(daoAddress), value);
        Address.sendValue(payable(providerAddress), value);
    }

    // 
    // Mission Manager functions
    //

    function setKarmaLevels(uint256[] calldata tokenIds, uint256[] calldata levels) external onlyMissionManager {
        for(uint256 i=0; i<tokenIds.length; i++) {
            karmaLevel[tokenIds[i]] = levels[i];
        }
    }

    function setGenesisLevels(uint256[] calldata tokenIds, uint256[] calldata levels) external onlyMissionManager {
        for(uint256 i=0; i<tokenIds.length; i++) {
            genesisLevel[tokenIds[i]] = levels[i];
        }
    }

    //
    // public / external functions
    //

    // get KarmaId for a matching Genesis if it exists
    function getKarmaIdForMonkeyAndDessertCombination(uint256 monkeyId, uint8 dessertType) external view returns (uint256) {
        uint256 karmaId;
        if (dessertType == DESSERT3_TYPE) {
            karmaId = ocmToKarma3[monkeyId];
        } else {
            karmaId = getKarmaId(dessertType, monkeyId);
        }
        require(_exists(karmaId), "Query for nonexistent karma");
        return karmaId;
    }

    function hasMonkeyEatenDessertType(uint256 monkeyId, uint8 dessertType) external view returns (bool) {
        if (dessertType == DESSERT3_TYPE) {
            return ocmToKarma3[monkeyId] > 0;
        }
        uint256 karmaId = getKarmaId(dessertType, monkeyId);
        return _exists(karmaId);
    }    

    function isMinted(uint256 karmaId) external view returns (bool) {
        return _exists(karmaId);
    }    

    function totalKarmaFromDesserts() external view returns (uint256) {
        return totalSupply() - numKarmasMintedPublicMint - numKarmasMintedManagerMint;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "Token does not exist");
        return renderingContract.tokenURI(tokenId, randomOffset);
    }

    // users can verify that they are on the allow list
    function onAllowList(address addr, bytes32[] calldata merkleProof) public view returns (bool) {
        return MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(addr)));
    }

    //
    // internal functions
    //

    // only for Karma1 and Karma2 from Desserts, not for Karma3
    function getKarmaId(uint256 dessertType, uint256 monkeyId) internal pure returns (uint256) {
        require(dessertType != DESSERT3_TYPE, "karma3 ID can't be calculated");
        return dessertType * PUBLIC_MINT_SIZE + monkeyId;
    }

}

File 2 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 3 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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 making 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 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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 5 of 15 : 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 6 of 15 : 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 7 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.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())) : "";
    }

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

    /**
     * @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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 8 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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) {
        return msg.data;
    }
}

File 9 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 10 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 11 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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

File 12 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 14 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"ocmAddress","type":"address"},{"internalType":"address","name":"dessertAddress","type":"address"},{"internalType":"address","name":"allowListNFTAddress","type":"address"},{"internalType":"address","name":"randomizerAddress","type":"address"},{"internalType":"address","name":"renderingAddress","type":"address"}],"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":false,"internalType":"uint256","name":"karmaId","type":"uint256"},{"indexed":false,"internalType":"address","name":"eaterAddress","type":"address"}],"name":"DessertEaten","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListNFTActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListNFTMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dessertEatingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyDessertList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dessertType","type":"uint256"},{"internalType":"uint256","name":"monkeyId","type":"uint256"}],"name":"eatDessert","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeDessertEatingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numKarmas","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"generalMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"genesisLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"monkeyId","type":"uint256"},{"internalType":"uint8","name":"dessertType","type":"uint8"}],"name":"getKarmaIdForMonkeyAndDessertCombination","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"monkeyId","type":"uint256"},{"internalType":"uint8","name":"dessertType","type":"uint8"}],"name":"hasMonkeyEatenDessertType","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":[{"internalType":"uint256","name":"karmaId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"karmaLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockRenderingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintPerAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumMintManagerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"}],"name":"mintManagerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintManagerMintQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"missionManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextMintManagerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numKarmasMintedManagerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numKarmasMintedPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"providerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomOffset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomizerContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renderingContractLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setDaoAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"setEarlyDessertList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"levels","type":"uint256[]"}],"name":"setGenesisLevels","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"levels","type":"uint256[]"}],"name":"setKarmaLevels","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMintPerAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"karmaId","type":"uint256"}],"name":"setMinimumMintManagerTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setMintManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setMissionManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setProviderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"offset","type":"uint256"}],"name":"setRandomOffset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"renderingAddress","type":"address"}],"name":"setRenderingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSalePrice","type":"uint256"}],"name":"setSalePrice","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":[],"name":"toggleAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleAllowListNFTActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDessertEatingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleFreeDessertEatingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","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":"totalKarmaFromDesserts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60e0604052617531600c556002600d556706f05b59d3b20000600e556000600f81905560105561271060118190556123296012556013556015805464ffffffffff19169055601a805460ff60a01b191690553480156200005e57600080fd5b50604051620041e6380380620041e6833981016040819052620000819162000299565b604051806040016040528060058152602001644b61726d6160d81b815250604051806040016040528060058152602001644b41524d4160d81b8152508160009080519060200190620000d5929190620001d6565b508051620000eb906001906020840190620001d6565b50506001600a5550620000fe3362000184565b6001600160601b0319606095861b811660805293851b841660a0529190931b90911660c052601a80546001600160a01b039283166001600160a01b03199182161790915560158054939092166501000000000002600160281b600160c81b0319909316929092179055601780548216339081179091556016805490921617905562000346565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e49062000309565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b80516001600160a01b03811681146200029457600080fd5b919050565b600080600080600060a08688031215620002b257600080fd5b620002bd866200027c565b9450620002cd602087016200027c565b9350620002dd604087016200027c565b9250620002ed606087016200027c565b9150620002fd608087016200027c565b90509295509295909350565b600181811c908216806200031e57607f821691505b602082108114156200034057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c60c05160601c613e596200038d600039600081816112d501526114a701526000818161265801526129020152600061255e0152613e596000f3fe6080604052600436106104105760003560e01c8063706e52571161021e578063a597910511610123578063cea3a7fc116100ab578063dd752d961161007a578063dd752d9614610be0578063e985e9c514610bf3578063f299a8de14610c3c578063f2fde38b14610c52578063f51f96dd14610c7257600080fd5b8063cea3a7fc14610b68578063d473bd9814610b7d578063dbe57b0714610b9e578063dc5d7fc514610bc057600080fd5b8063b7f1d072116100f2578063b7f1d07214610ad3578063b88d4fde14610af3578063bc8893b414610b13578063c2c6b46e14610b33578063c87b56dd14610b4857600080fd5b8063a597910514610a52578063ad2e046714610a72578063b071be4214610a92578063b32c568014610ab357600080fd5b80638c9225c5116101a65780639409e612116101755780639409e612146109bd57806395d89b41146109d05780639a3cac6a146109e55780639a51987414610a05578063a22cb46514610a3257600080fd5b80638c9225c51461093c5780638da5cb5b14610952578063925a5ca814610970578063932cdc421461099d57600080fd5b80637cb64759116101ed5780637cb64759146108a75780637e4edf70146108c757806382d68ed3146108e757806387fcb30a146109075780638830eac01461091c57600080fd5b8063706e52571461083c57806370a082311461085c578063715018a61461087c5780637465d29b1461089157600080fd5b806333dde42611610324578063457dbf21116102ac57806350ac2bc11161027b57806350ac2bc11461079a57806351a3b700146107ba578063544337d0146107e75780635bd1f81e146108075780636352211e1461081c57600080fd5b8063457dbf211461072657806345964d95146107455780634df981da1461075a5780634f6ccce71461077a57600080fd5b806342842e0e116102f357806342842e0e146106a15780634311de8f146106c15780634412fc05146106d6578063444cdb97146106ec57806344dc206b1461070657600080fd5b806333dde4261461063a5780633514d15b1461065a57806336c7c12c146106625780633b238f561461068b57600080fd5b80631919fed7116103a75780632800c721116103765780632800c721146105a45780632a2f4dfd146105ba5780632d71b78a146105da5780632f745c59146105fa57806333c41a901461061a57600080fd5b80631919fed71461052f5780632131c68c1461054f578063238ee2b31461056f57806323b872dd1461058457600080fd5b8063095ea7b3116103e3578063095ea7b3146104bb5780630b103482146104db5780630c894cfe146104fb57806318160ddd1461051057600080fd5b806301ffc9a71461041557806306fdde031461044a57806307dbc6501461046c578063081812fc14610483575b600080fd5b34801561042157600080fd5b506104356104303660046138e2565b610c88565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610cb3565b6040516104419190613a95565b34801561047857600080fd5b50610481610d45565b005b34801561048f57600080fd5b506104a361049e3660046138c9565b610d9b565b6040516001600160a01b039091168152602001610441565b3480156104c757600080fd5b506104816104d6366004613831565b610e23565b3480156104e757600080fd5b506104816104f63660046138c9565b610f39565b34801561050757600080fd5b50610481610f68565b34801561051c57600080fd5b506008545b604051908152602001610441565b34801561053b57600080fd5b5061048161054a3660046138c9565b610fb1565b34801561055b57600080fd5b506018546104a3906001600160a01b031681565b34801561057b57600080fd5b50610521610fe0565b34801561059057600080fd5b5061048161059f3660046136b9565b61100a565b3480156105b057600080fd5b5061052160115481565b3480156105c657600080fd5b506104816105d5366004613646565b61103b565b3480156105e657600080fd5b506104816105f53660046138c9565b611087565b34801561060657600080fd5b50610521610615366004613831565b6110b6565b34801561062657600080fd5b506104356106353660046138c9565b61114c565b34801561064657600080fd5b5061048161065536600461385d565b611157565b61048161121e565b34801561066e57600080fd5b506015546104a3906501000000000090046001600160a01b031681565b34801561069757600080fd5b5061052160135481565b3480156106ad57600080fd5b506104816106bc3660046136b9565b611534565b3480156106cd57600080fd5b5061048161154f565b3480156106e257600080fd5b5061052160105481565b3480156106f857600080fd5b506015546104359060ff1681565b34801561071257600080fd5b506104816107213660046138c9565b6115bc565b34801561073257600080fd5b5060155461043590610100900460ff1681565b34801561075157600080fd5b50610481611641565b34801561076657600080fd5b5061048161077536600461385d565b611680565b34801561078657600080fd5b506105216107953660046138c9565b611740565b3480156107a657600080fd5b506104816107b536600461385d565b6117d3565b3480156107c657600080fd5b506105216107d53660046138c9565b601f6020526000908152604090205481565b3480156107f357600080fd5b50610481610802366004613646565b611878565b34801561081357600080fd5b5061048161195f565b34801561082857600080fd5b506104a36108373660046138c9565b6119aa565b34801561084857600080fd5b506019546104a3906001600160a01b031681565b34801561086857600080fd5b50610521610877366004613646565b611a21565b34801561088857600080fd5b50610481611aa8565b34801561089d57600080fd5b50610521600d5481565b3480156108b357600080fd5b506104816108c23660046138c9565b611ade565b3480156108d357600080fd5b506016546104a3906001600160a01b031681565b3480156108f357600080fd5b506017546104a3906001600160a01b031681565b34801561091357600080fd5b50610481611b0d565b34801561092857600080fd5b50610481610937366004613646565b611b54565b34801561094857600080fd5b50610521600f5481565b34801561095e57600080fd5b50600b546001600160a01b03166104a3565b34801561097c57600080fd5b5061052161098b3660046138c9565b601e6020526000908152604090205481565b3480156109a957600080fd5b506104816109b8366004613831565b611ba0565b6104816109cb3660046139ac565b611cc0565b3480156109dc57600080fd5b5061045f61200f565b3480156109f157600080fd5b50610481610a00366004613646565b61201e565b348015610a1157600080fd5b50610521610a20366004613646565b601b6020526000908152604090205481565b348015610a3e57600080fd5b50610481610a4d3660046137fe565b61206a565b348015610a5e57600080fd5b50610521610a6d366004613a01565b612079565b348015610a7e57600080fd5b50610435610a8d366004613a01565b612109565b348015610a9e57600080fd5b50601554610435906301000000900460ff1681565b348015610abf57600080fd5b50610435610ace3660046137a9565b612150565b348015610adf57600080fd5b50610481610aee366004613646565b6121c8565b348015610aff57600080fd5b50610481610b0e3660046136fa565b612266565b348015610b1f57600080fd5b506015546104359062010000900460ff1681565b348015610b3f57600080fd5b5061048161229e565b348015610b5457600080fd5b5061045f610b633660046138c9565b61235a565b348015610b7457600080fd5b50610481612433565b348015610b8957600080fd5b50601a5461043590600160a01b900460ff1681565b348015610baa57600080fd5b5060155461043590640100000000900460ff1681565b348015610bcc57600080fd5b50610481610bdb366004613646565b612471565b610481610bee3660046139df565b6124bd565b348015610bff57600080fd5b50610435610c0e366004613680565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610c4857600080fd5b5061052160125481565b348015610c5e57600080fd5b50610481610c6d366004613646565b6129b2565b348015610c7e57600080fd5b50610521600e5481565b60006001600160e01b0319821663780e9d6360e01b1480610cad5750610cad82612a4d565b92915050565b606060008054610cc290613d20565b80601f0160208091040260200160405190810160405280929190818152602001828054610cee90613d20565b8015610d3b5780601f10610d1057610100808354040283529160200191610d3b565b820191906000526020600020905b815481529060010190602001808311610d1e57829003601f168201915b5050505050905090565b600b546001600160a01b03163314610d785760405162461bcd60e51b8152600401610d6f90613b22565b60405180910390fd5b6015805464ff000000001981166401000000009182900460ff1615909102179055565b6000610da682612a9d565b610e075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d6f565b506000908152600460205260409020546001600160a01b031690565b6000610e2e826119aa565b9050806001600160a01b0316836001600160a01b03161415610e9c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d6f565b336001600160a01b0382161480610eb85750610eb88133610c0e565b610f2a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d6f565b610f348383612aba565b505050565b600b546001600160a01b03163314610f635760405162461bcd60e51b8152600401610d6f90613b22565b600d55565b600b546001600160a01b03163314610f925760405162461bcd60e51b8152600401610d6f90613b22565b6015805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610d6f90613b22565b600e55565b6000601054600f54610ff160085490565b610ffb9190613cc6565b6110059190613cc6565b905090565b6110143382612b28565b6110305760405162461bcd60e51b8152600401610d6f90613b57565b610f34838383612c11565b600b546001600160a01b031633146110655760405162461bcd60e51b8152600401610d6f90613b22565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146110b15760405162461bcd60e51b8152600401610d6f90613b22565b601255565b60006110c183611a21565b82106111235760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610d6f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610cad82612a9d565b6017546001600160a01b031633146111b15760405162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f74206d697373696f6e206d616e616765720000006044820152606401610d6f565b60005b83811015611217578282828181106111ce576111ce613dcc565b90506020020135601f60008787858181106111eb576111eb613dcc565b90506020020135815260200190815260200160002081905550808061120f90613d5b565b9150506111b4565b5050505050565b60155460ff166112705760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f77206c697374204e4654206973206e6f7420616374697665000000006044820152606401610d6f565b6002600a5414156112935760405162461bcd60e51b8152600401610d6f90613beb565b6002600a553332146112b75760405162461bcd60e51b8152600401610d6f90613ba8565b604051627eeac760e11b8152336004820152600160248201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169062fdd58e9060440160206040518083038186803b15801561131e57600080fd5b505afa158015611332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113569190613993565b116113b25760405162461bcd60e51b815260206004820152602660248201527f596f7520646f206e6f7420686176652061204b61726d6120416c6c6f77204c696044820152651cdd0813919560d21b6064820152608401610d6f565b612710601054600f546113c59190613c7b565b106114125760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610d6f565b601254600f54611423906001613c7b565b106114705760405162461bcd60e51b815260206004820152601960248201527f726573657276656420666f72206d696e74206d616e61676572000000000000006044820152606401610d6f565b34600e5411156114925760405162461bcd60e51b8152600401610d6f90613afa565b604051630e5064c360e41b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e5064c3090602401600060405180830381600087803b1580156114f357600080fd5b505af1158015611507573d6000803e3d6000fd5b5050600f805492509050600061151c83613d5b565b919050555061152d33600f54612db8565b6001600a55565b610f3483838360405180602001604052806000815250612266565b600b546001600160a01b031633146115795760405162461bcd60e51b8152600401610d6f90613b22565b6002600a54141561159c5760405162461bcd60e51b8152600401610d6f90613beb565b6002600a5561152d6115b6600b546001600160a01b031690565b47612dd2565b600b546001600160a01b031633146115e65760405162461bcd60e51b8152600401610d6f90613b22565b612710601354101561162f5760405162461bcd60e51b81526020600482015260126024820152711bd9999cd95d08185b1c9958591e481cd95d60721b6044820152606401610d6f565b61163b61271082613d76565b60135550565b600b546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610d6f90613b22565b601a805460ff60a01b1916600160a01b179055565b6017546001600160a01b031633146116da5760405162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f74206d697373696f6e206d616e616765720000006044820152606401610d6f565b60005b83811015611217578282828181106116f7576116f7613dcc565b90506020020135601e600087878581811061171457611714613dcc565b90506020020135815260200190815260200160002081905550808061173890613d5b565b9150506116dd565b600061174b60085490565b82106117ae5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610d6f565b600882815481106117c1576117c1613dcc565b90600052602060002001549050919050565b600b546001600160a01b031633146117fd5760405162461bcd60e51b8152600401610d6f90613b22565b60005b838110156112175782828281811061181a5761181a613dcc565b90506020020135601b600087878581811061183757611837613dcc565b905060200201602081019061184c9190613646565b6001600160a01b031681526020810191909152604001600020558061187081613d5b565b915050611800565b6016546001600160a01b031633146118d25760405162461bcd60e51b815260206004820152601a60248201527f63616c6c6572206973206e6f74206d696e74206d616e616765720000000000006044820152606401610d6f565b60125460115410156119265760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420616c6c6f636174656420666f72206d696e74206d616e6167657200006044820152606401610d6f565b61193281601154612db8565b6011805490600061194283613d09565b90915550506010805490600061195783613d5b565b919050555050565b600b546001600160a01b031633146119895760405162461bcd60e51b8152600401610d6f90613b22565b6015805463ff00000019811663010000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610cad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d6f565b60006001600160a01b038216611a8c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d6f565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611ad25760405162461bcd60e51b8152600401610d6f90613b22565b611adc6000612eeb565b565b600b546001600160a01b03163314611b085760405162461bcd60e51b8152600401610d6f90613b22565b601455565b600b546001600160a01b03163314611b375760405162461bcd60e51b8152600401610d6f90613b22565b6015805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314611b7e5760405162461bcd60e51b8152600401610d6f90613b22565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b03163314611bfa5760405162461bcd60e51b815260206004820152601a60248201527f63616c6c6572206973206e6f74206d696e74206d616e616765720000000000006044820152606401610d6f565b601254816011546001611c0d9190613c7b565b611c179190613cc6565b1015611c655760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420616c6c6f636174656420666f72206d696e74206d616e6167657200006044820152606401610d6f565b60005b81811015611ca457611c7c83601154612db8565b60118054906000611c8c83613d09565b91905055508080611c9c90613d5b565b915050611c68565b508060106000828254611cb79190613c7b565b90915550505050565b6002600a541415611ce35760405162461bcd60e51b8152600401610d6f90613beb565b6002600a55333214611d075760405162461bcd60e51b8152600401610d6f90613ba8565b61271083601054600f54611d1b9190613c7b565b611d259190613c7b565b1115611d735760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610d6f565b60008311611db35760405162461bcd60e51b815260206004820152600d60248201526c04d757374206d696e74203e203609c1b6044820152606401610d6f565b3483600e54611dc29190613ca7565b1115611de05760405162461bcd60e51b8152600401610d6f90613afa565b60125483600f54611df19190613c7b565b10611e295760405162461bcd60e51b81526020600482015260086024820152671c995cd95c9d995960c21b6044820152606401610d6f565b60155462010000900460ff1615611e8357600a831115611e7e5760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081b5a5b9d60821b6044820152606401610d6f565b611fa9565b601554610100900460ff16611eda5760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77206c697374206973206e6f742061637469766500000000000000006044820152606401610d6f565b611ee5338383612150565b611f255760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b6044820152606401610d6f565b600d54336000908152601c6020526040902054611f43908590613c7b565b1115611f845760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081b5a5b9d60821b6044820152606401610d6f565b336000908152601c602052604081208054859290611fa3908490613c7b565b90915550505b6000600f546001611fba9190613c7b565b90505b83600f54611fcb9190613c7b565b8111611fed57611fdb3382612db8565b80611fe581613d5b565b915050611fbd565b5082600f60008282546120009190613c7b565b90915550506001600a55505050565b606060018054610cc290613d20565b600b546001600160a01b031633146120485760405162461bcd60e51b8152600401610d6f90613b22565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b612075338383612f3d565b5050565b60008060038360ff16141561209d57506000838152601d60205260409020546120ad565b6120aa8360ff168561300c565b90505b6120b681612a9d565b6121025760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e74206b61726d6100000000006044820152606401610d6f565b9392505050565b600060038260ff16141561212e57506000828152601d60205260409020541515610cad565b600061213d8360ff168561300c565b905061214881612a9d565b949350505050565b6000612148838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613076565b600b546001600160a01b031633146121f25760405162461bcd60e51b8152600401610d6f90613b22565b601a54600160a01b900460ff16156122445760405162461bcd60e51b81526020600482015260156024820152741c995b99195c90dbdb9d1c9858dd081b1bd8dad959605a1b6044820152606401610d6f565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6122703383612b28565b61228c5760405162461bcd60e51b8152600401610d6f90613b57565b6122988484848461308c565b50505050565b6018546001600160a01b031633146122ec5760405162461bcd60e51b815260206004820152601160248201527063616c6c6572206973206e6f742044414f60781b6044820152606401610d6f565b6002600a54141561230f5760405162461bcd60e51b8152600401610d6f90613beb565b6002600a8190556000906123239047613c93565b60185490915061233c906001600160a01b031682612dd2565b601954612352906001600160a01b031682612dd2565b506001600a55565b606061236582612a9d565b6123a85760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610d6f565b601a546013546040516392cb829d60e01b81526004810185905260248101919091526001600160a01b03909116906392cb829d9060440160006040518083038186803b1580156123f757600080fd5b505afa15801561240b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610cad919081019061391c565b600b546001600160a01b0316331461245d5760405162461bcd60e51b8152600401610d6f90613b22565b6015805460ff19811660ff90911615179055565b600b546001600160a01b0316331461249b5760405162461bcd60e51b8152600401610d6f90613b22565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a5414156124e05760405162461bcd60e51b8152600401610d6f90613beb565b6002600a556015546301000000900460ff1661253e5760405162461bcd60e51b815260206004820152601960248201527f44657373657274206973206e6f742073657276656420796574000000000000006044820152606401610d6f565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e9060240160206040518083038186803b1580156125a057600080fd5b505afa1580156125b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d89190613663565b6001600160a01b03161461263a5760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e6572206f6620746865206d6f6e6044820152626b657960e81b6064820152608401610d6f565b604051627eeac760e11b8152336004820152602481018390526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169062fdd58e9060440160206040518083038186803b1580156126a157600080fd5b505afa1580156126b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126d99190613993565b116127265760405162461bcd60e51b815260206004820152601b60248201527f596f7520646f206e6f74206861766520746865206465737365727400000000006044820152606401610d6f565b600060038314156128015761753f600c5411156127785760405162461bcd60e51b815260206004820152601060248201526f4e6f206d6f726520446573736572743360801b6044820152606401610d6f565b6000828152601d6020526040902054156127d45760405162461bcd60e51b815260206004820152601760248201527f4d6f6e6b657920616c7265616479206174652063616b650000000000000000006044820152606401610d6f565b50600c80546000838152601d60205260408120829055909182916127f783613d5b565b9190505550612873565b61280b838361300c565b905061281681612a9d565b156128735760405162461bcd60e51b815260206004820152602760248201527f4d6f6e6b657920616c72656164792061746520746869732074797065206f662060448201526619195cdcd95c9d60ca1b6064820152608401610d6f565b601554640100000000900460ff166128e657336000908152601b6020526040902054156128bf57336000908152601b602052604081208054916128b583613d09565b91905055506128e6565b34666a94d74f43000011156128e65760405162461bcd60e51b8152600401610d6f90613afa565b604051633078f6fd60e01b8152600481018490523360248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690633078f6fd90604401600060405180830381600087803b15801561294e57600080fd5b505af1158015612962573d6000803e3d6000fd5b505050506129703382612db8565b604080518281523360208201527f83d592153e0cfdda4e05d880282028e735e856059c9ff144be1701a576d827cb910160405180910390a150506001600a5550565b600b546001600160a01b031633146129dc5760405162461bcd60e51b8152600401610d6f90613b22565b6001600160a01b038116612a415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d6f565b612a4a81612eeb565b50565b60006001600160e01b031982166380ac58cd60e01b1480612a7e57506001600160e01b03198216635b5e139f60e01b145b80610cad57506301ffc9a760e01b6001600160e01b0319831614610cad565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612aef826119aa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b3382612a9d565b612b945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d6f565b6000612b9f836119aa565b9050806001600160a01b0316846001600160a01b03161480612be657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806121485750836001600160a01b0316612bff84610d9b565b6001600160a01b031614949350505050565b826001600160a01b0316612c24826119aa565b6001600160a01b031614612c885760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d6f565b6001600160a01b038216612cea5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d6f565b612cf58383836130bf565b612d00600082612aba565b6001600160a01b0383166000908152600360205260408120805460019290612d29908490613cc6565b90915550506001600160a01b0382166000908152600360205260408120805460019290612d57908490613c7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612075828260405180602001604052806000815250613177565b80471015612e225760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d6f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e6f576040519150601f19603f3d011682016040523d82523d6000602084013e612e74565b606091505b5050905080610f345760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d6f565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612f9f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d6f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000600383141561305f5760405162461bcd60e51b815260206004820152601d60248201527f6b61726d61332049442063616e27742062652063616c63756c617465640000006044820152606401610d6f565b8161306c61271085613ca7565b6121029190613c7b565b60008261308385846131aa565b14949350505050565b613097848484612c11565b6130a38484848461321e565b6122985760405162461bcd60e51b8152600401610d6f90613aa8565b6001600160a01b03831661311a5761311581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61313d565b816001600160a01b0316836001600160a01b03161461313d5761313d838261332b565b6001600160a01b03821661315457610f34816133c8565b826001600160a01b0316826001600160a01b031614610f3457610f348282613477565b61318183836134bb565b61318e600084848461321e565b610f345760405162461bcd60e51b8152600401610d6f90613aa8565b600081815b84518110156132165760008582815181106131cc576131cc613dcc565b602002602001015190508083116131f25760008381526020829052604090209250613203565b600081815260208490526040902092505b508061320e81613d5b565b9150506131af565b509392505050565b60006001600160a01b0384163b1561332057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613262903390899088908890600401613a58565b602060405180830381600087803b15801561327c57600080fd5b505af19250505080156132ac575060408051601f3d908101601f191682019092526132a9918101906138ff565b60015b613306573d8080156132da576040519150601f19603f3d011682016040523d82523d6000602084013e6132df565b606091505b5080516132fe5760405162461bcd60e51b8152600401610d6f90613aa8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612148565b506001949350505050565b6000600161333884611a21565b6133429190613cc6565b600083815260076020526040902054909150808214613395576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906133da90600190613cc6565b6000838152600960205260408120546008805493945090928490811061340257613402613dcc565b90600052602060002001549050806008838154811061342357613423613dcc565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061345b5761345b613db6565b6001900381819060005260206000200160009055905550505050565b600061348283611a21565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166135115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d6f565b61351a81612a9d565b156135675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d6f565b613573600083836130bf565b6001600160a01b038216600090815260036020526040812080546001929061359c908490613c7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008083601f84011261360c57600080fd5b50813567ffffffffffffffff81111561362457600080fd5b6020830191508360208260051b850101111561363f57600080fd5b9250929050565b60006020828403121561365857600080fd5b813561210281613df8565b60006020828403121561367557600080fd5b815161210281613df8565b6000806040838503121561369357600080fd5b823561369e81613df8565b915060208301356136ae81613df8565b809150509250929050565b6000806000606084860312156136ce57600080fd5b83356136d981613df8565b925060208401356136e981613df8565b929592945050506040919091013590565b6000806000806080858703121561371057600080fd5b843561371b81613df8565b9350602085013561372b81613df8565b925060408501359150606085013567ffffffffffffffff81111561374e57600080fd5b8501601f8101871361375f57600080fd5b803561377261376d82613c53565b613c22565b81815288602083850101111561378757600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806000604084860312156137be57600080fd5b83356137c981613df8565b9250602084013567ffffffffffffffff8111156137e557600080fd5b6137f1868287016135fa565b9497909650939450505050565b6000806040838503121561381157600080fd5b823561381c81613df8565b9150602083013580151581146136ae57600080fd5b6000806040838503121561384457600080fd5b823561384f81613df8565b946020939093013593505050565b6000806000806040858703121561387357600080fd5b843567ffffffffffffffff8082111561388b57600080fd5b613897888389016135fa565b909650945060208701359150808211156138b057600080fd5b506138bd878288016135fa565b95989497509550505050565b6000602082840312156138db57600080fd5b5035919050565b6000602082840312156138f457600080fd5b813561210281613e0d565b60006020828403121561391157600080fd5b815161210281613e0d565b60006020828403121561392e57600080fd5b815167ffffffffffffffff81111561394557600080fd5b8201601f8101841361395657600080fd5b805161396461376d82613c53565b81815285602083850101111561397957600080fd5b61398a826020830160208601613cdd565b95945050505050565b6000602082840312156139a557600080fd5b5051919050565b6000806000604084860312156139c157600080fd5b83359250602084013567ffffffffffffffff8111156137e557600080fd5b600080604083850312156139f257600080fd5b50508035926020909101359150565b60008060408385031215613a1457600080fd5b82359150602083013560ff811681146136ae57600080fd5b60008151808452613a44816020860160208601613cdd565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a8b90830184613a2c565b9695505050505050565b6020815260006121026020830184613a2c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d08aa89040dcdee840cadcdeeaced60931b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f596f752063616e6e6f74206d696e742066726f6d20736d61727420636f6e74726040820152621858dd60ea1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c4b57613c4b613de2565b604052919050565b600067ffffffffffffffff821115613c6d57613c6d613de2565b50601f01601f191660200190565b60008219821115613c8e57613c8e613d8a565b500190565b600082613ca257613ca2613da0565b500490565b6000816000190483118215151615613cc157613cc1613d8a565b500290565b600082821015613cd857613cd8613d8a565b500390565b60005b83811015613cf8578181015183820152602001613ce0565b838111156122985750506000910152565b600081613d1857613d18613d8a565b506000190190565b600181811c90821680613d3457607f821691505b60208210811415613d5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d6f57613d6f613d8a565b5060010190565b600082613d8557613d85613da0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612a4a57600080fd5b6001600160e01b031981168114612a4a57600080fdfea26469706673582212204c31db63a3bc64c65f0011c55192cd6615f2339cad17a68d943412c03c0f336e64736f6c63430008060033000000000000000000000000960b7a6bcd451c9968473f7bbfd9be826efd549a0000000000000000000000005079fc4e96338be1b5aff236ff4b00ec4452b2d30000000000000000000000002b6f861ae6419e51aeab201fb5f89706766e7dba000000000000000000000000be53d018dc774c0d263f0f435f3b4749d80e2566000000000000000000000000b2a75db67081d1b8d5622374960c5e89e243afb9

Deployed Bytecode

0x6080604052600436106104105760003560e01c8063706e52571161021e578063a597910511610123578063cea3a7fc116100ab578063dd752d961161007a578063dd752d9614610be0578063e985e9c514610bf3578063f299a8de14610c3c578063f2fde38b14610c52578063f51f96dd14610c7257600080fd5b8063cea3a7fc14610b68578063d473bd9814610b7d578063dbe57b0714610b9e578063dc5d7fc514610bc057600080fd5b8063b7f1d072116100f2578063b7f1d07214610ad3578063b88d4fde14610af3578063bc8893b414610b13578063c2c6b46e14610b33578063c87b56dd14610b4857600080fd5b8063a597910514610a52578063ad2e046714610a72578063b071be4214610a92578063b32c568014610ab357600080fd5b80638c9225c5116101a65780639409e612116101755780639409e612146109bd57806395d89b41146109d05780639a3cac6a146109e55780639a51987414610a05578063a22cb46514610a3257600080fd5b80638c9225c51461093c5780638da5cb5b14610952578063925a5ca814610970578063932cdc421461099d57600080fd5b80637cb64759116101ed5780637cb64759146108a75780637e4edf70146108c757806382d68ed3146108e757806387fcb30a146109075780638830eac01461091c57600080fd5b8063706e52571461083c57806370a082311461085c578063715018a61461087c5780637465d29b1461089157600080fd5b806333dde42611610324578063457dbf21116102ac57806350ac2bc11161027b57806350ac2bc11461079a57806351a3b700146107ba578063544337d0146107e75780635bd1f81e146108075780636352211e1461081c57600080fd5b8063457dbf211461072657806345964d95146107455780634df981da1461075a5780634f6ccce71461077a57600080fd5b806342842e0e116102f357806342842e0e146106a15780634311de8f146106c15780634412fc05146106d6578063444cdb97146106ec57806344dc206b1461070657600080fd5b806333dde4261461063a5780633514d15b1461065a57806336c7c12c146106625780633b238f561461068b57600080fd5b80631919fed7116103a75780632800c721116103765780632800c721146105a45780632a2f4dfd146105ba5780632d71b78a146105da5780632f745c59146105fa57806333c41a901461061a57600080fd5b80631919fed71461052f5780632131c68c1461054f578063238ee2b31461056f57806323b872dd1461058457600080fd5b8063095ea7b3116103e3578063095ea7b3146104bb5780630b103482146104db5780630c894cfe146104fb57806318160ddd1461051057600080fd5b806301ffc9a71461041557806306fdde031461044a57806307dbc6501461046c578063081812fc14610483575b600080fd5b34801561042157600080fd5b506104356104303660046138e2565b610c88565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610cb3565b6040516104419190613a95565b34801561047857600080fd5b50610481610d45565b005b34801561048f57600080fd5b506104a361049e3660046138c9565b610d9b565b6040516001600160a01b039091168152602001610441565b3480156104c757600080fd5b506104816104d6366004613831565b610e23565b3480156104e757600080fd5b506104816104f63660046138c9565b610f39565b34801561050757600080fd5b50610481610f68565b34801561051c57600080fd5b506008545b604051908152602001610441565b34801561053b57600080fd5b5061048161054a3660046138c9565b610fb1565b34801561055b57600080fd5b506018546104a3906001600160a01b031681565b34801561057b57600080fd5b50610521610fe0565b34801561059057600080fd5b5061048161059f3660046136b9565b61100a565b3480156105b057600080fd5b5061052160115481565b3480156105c657600080fd5b506104816105d5366004613646565b61103b565b3480156105e657600080fd5b506104816105f53660046138c9565b611087565b34801561060657600080fd5b50610521610615366004613831565b6110b6565b34801561062657600080fd5b506104356106353660046138c9565b61114c565b34801561064657600080fd5b5061048161065536600461385d565b611157565b61048161121e565b34801561066e57600080fd5b506015546104a3906501000000000090046001600160a01b031681565b34801561069757600080fd5b5061052160135481565b3480156106ad57600080fd5b506104816106bc3660046136b9565b611534565b3480156106cd57600080fd5b5061048161154f565b3480156106e257600080fd5b5061052160105481565b3480156106f857600080fd5b506015546104359060ff1681565b34801561071257600080fd5b506104816107213660046138c9565b6115bc565b34801561073257600080fd5b5060155461043590610100900460ff1681565b34801561075157600080fd5b50610481611641565b34801561076657600080fd5b5061048161077536600461385d565b611680565b34801561078657600080fd5b506105216107953660046138c9565b611740565b3480156107a657600080fd5b506104816107b536600461385d565b6117d3565b3480156107c657600080fd5b506105216107d53660046138c9565b601f6020526000908152604090205481565b3480156107f357600080fd5b50610481610802366004613646565b611878565b34801561081357600080fd5b5061048161195f565b34801561082857600080fd5b506104a36108373660046138c9565b6119aa565b34801561084857600080fd5b506019546104a3906001600160a01b031681565b34801561086857600080fd5b50610521610877366004613646565b611a21565b34801561088857600080fd5b50610481611aa8565b34801561089d57600080fd5b50610521600d5481565b3480156108b357600080fd5b506104816108c23660046138c9565b611ade565b3480156108d357600080fd5b506016546104a3906001600160a01b031681565b3480156108f357600080fd5b506017546104a3906001600160a01b031681565b34801561091357600080fd5b50610481611b0d565b34801561092857600080fd5b50610481610937366004613646565b611b54565b34801561094857600080fd5b50610521600f5481565b34801561095e57600080fd5b50600b546001600160a01b03166104a3565b34801561097c57600080fd5b5061052161098b3660046138c9565b601e6020526000908152604090205481565b3480156109a957600080fd5b506104816109b8366004613831565b611ba0565b6104816109cb3660046139ac565b611cc0565b3480156109dc57600080fd5b5061045f61200f565b3480156109f157600080fd5b50610481610a00366004613646565b61201e565b348015610a1157600080fd5b50610521610a20366004613646565b601b6020526000908152604090205481565b348015610a3e57600080fd5b50610481610a4d3660046137fe565b61206a565b348015610a5e57600080fd5b50610521610a6d366004613a01565b612079565b348015610a7e57600080fd5b50610435610a8d366004613a01565b612109565b348015610a9e57600080fd5b50601554610435906301000000900460ff1681565b348015610abf57600080fd5b50610435610ace3660046137a9565b612150565b348015610adf57600080fd5b50610481610aee366004613646565b6121c8565b348015610aff57600080fd5b50610481610b0e3660046136fa565b612266565b348015610b1f57600080fd5b506015546104359062010000900460ff1681565b348015610b3f57600080fd5b5061048161229e565b348015610b5457600080fd5b5061045f610b633660046138c9565b61235a565b348015610b7457600080fd5b50610481612433565b348015610b8957600080fd5b50601a5461043590600160a01b900460ff1681565b348015610baa57600080fd5b5060155461043590640100000000900460ff1681565b348015610bcc57600080fd5b50610481610bdb366004613646565b612471565b610481610bee3660046139df565b6124bd565b348015610bff57600080fd5b50610435610c0e366004613680565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610c4857600080fd5b5061052160125481565b348015610c5e57600080fd5b50610481610c6d366004613646565b6129b2565b348015610c7e57600080fd5b50610521600e5481565b60006001600160e01b0319821663780e9d6360e01b1480610cad5750610cad82612a4d565b92915050565b606060008054610cc290613d20565b80601f0160208091040260200160405190810160405280929190818152602001828054610cee90613d20565b8015610d3b5780601f10610d1057610100808354040283529160200191610d3b565b820191906000526020600020905b815481529060010190602001808311610d1e57829003601f168201915b5050505050905090565b600b546001600160a01b03163314610d785760405162461bcd60e51b8152600401610d6f90613b22565b60405180910390fd5b6015805464ff000000001981166401000000009182900460ff1615909102179055565b6000610da682612a9d565b610e075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d6f565b506000908152600460205260409020546001600160a01b031690565b6000610e2e826119aa565b9050806001600160a01b0316836001600160a01b03161415610e9c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d6f565b336001600160a01b0382161480610eb85750610eb88133610c0e565b610f2a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d6f565b610f348383612aba565b505050565b600b546001600160a01b03163314610f635760405162461bcd60e51b8152600401610d6f90613b22565b600d55565b600b546001600160a01b03163314610f925760405162461bcd60e51b8152600401610d6f90613b22565b6015805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610d6f90613b22565b600e55565b6000601054600f54610ff160085490565b610ffb9190613cc6565b6110059190613cc6565b905090565b6110143382612b28565b6110305760405162461bcd60e51b8152600401610d6f90613b57565b610f34838383612c11565b600b546001600160a01b031633146110655760405162461bcd60e51b8152600401610d6f90613b22565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146110b15760405162461bcd60e51b8152600401610d6f90613b22565b601255565b60006110c183611a21565b82106111235760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610d6f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610cad82612a9d565b6017546001600160a01b031633146111b15760405162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f74206d697373696f6e206d616e616765720000006044820152606401610d6f565b60005b83811015611217578282828181106111ce576111ce613dcc565b90506020020135601f60008787858181106111eb576111eb613dcc565b90506020020135815260200190815260200160002081905550808061120f90613d5b565b9150506111b4565b5050505050565b60155460ff166112705760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f77206c697374204e4654206973206e6f7420616374697665000000006044820152606401610d6f565b6002600a5414156112935760405162461bcd60e51b8152600401610d6f90613beb565b6002600a553332146112b75760405162461bcd60e51b8152600401610d6f90613ba8565b604051627eeac760e11b8152336004820152600160248201526000907f0000000000000000000000002b6f861ae6419e51aeab201fb5f89706766e7dba6001600160a01b03169062fdd58e9060440160206040518083038186803b15801561131e57600080fd5b505afa158015611332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113569190613993565b116113b25760405162461bcd60e51b815260206004820152602660248201527f596f7520646f206e6f7420686176652061204b61726d6120416c6c6f77204c696044820152651cdd0813919560d21b6064820152608401610d6f565b612710601054600f546113c59190613c7b565b106114125760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610d6f565b601254600f54611423906001613c7b565b106114705760405162461bcd60e51b815260206004820152601960248201527f726573657276656420666f72206d696e74206d616e61676572000000000000006044820152606401610d6f565b34600e5411156114925760405162461bcd60e51b8152600401610d6f90613afa565b604051630e5064c360e41b81523360048201527f0000000000000000000000002b6f861ae6419e51aeab201fb5f89706766e7dba6001600160a01b03169063e5064c3090602401600060405180830381600087803b1580156114f357600080fd5b505af1158015611507573d6000803e3d6000fd5b5050600f805492509050600061151c83613d5b565b919050555061152d33600f54612db8565b6001600a55565b610f3483838360405180602001604052806000815250612266565b600b546001600160a01b031633146115795760405162461bcd60e51b8152600401610d6f90613b22565b6002600a54141561159c5760405162461bcd60e51b8152600401610d6f90613beb565b6002600a5561152d6115b6600b546001600160a01b031690565b47612dd2565b600b546001600160a01b031633146115e65760405162461bcd60e51b8152600401610d6f90613b22565b612710601354101561162f5760405162461bcd60e51b81526020600482015260126024820152711bd9999cd95d08185b1c9958591e481cd95d60721b6044820152606401610d6f565b61163b61271082613d76565b60135550565b600b546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610d6f90613b22565b601a805460ff60a01b1916600160a01b179055565b6017546001600160a01b031633146116da5760405162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f74206d697373696f6e206d616e616765720000006044820152606401610d6f565b60005b83811015611217578282828181106116f7576116f7613dcc565b90506020020135601e600087878581811061171457611714613dcc565b90506020020135815260200190815260200160002081905550808061173890613d5b565b9150506116dd565b600061174b60085490565b82106117ae5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610d6f565b600882815481106117c1576117c1613dcc565b90600052602060002001549050919050565b600b546001600160a01b031633146117fd5760405162461bcd60e51b8152600401610d6f90613b22565b60005b838110156112175782828281811061181a5761181a613dcc565b90506020020135601b600087878581811061183757611837613dcc565b905060200201602081019061184c9190613646565b6001600160a01b031681526020810191909152604001600020558061187081613d5b565b915050611800565b6016546001600160a01b031633146118d25760405162461bcd60e51b815260206004820152601a60248201527f63616c6c6572206973206e6f74206d696e74206d616e616765720000000000006044820152606401610d6f565b60125460115410156119265760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420616c6c6f636174656420666f72206d696e74206d616e6167657200006044820152606401610d6f565b61193281601154612db8565b6011805490600061194283613d09565b90915550506010805490600061195783613d5b565b919050555050565b600b546001600160a01b031633146119895760405162461bcd60e51b8152600401610d6f90613b22565b6015805463ff00000019811663010000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610cad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d6f565b60006001600160a01b038216611a8c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d6f565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611ad25760405162461bcd60e51b8152600401610d6f90613b22565b611adc6000612eeb565b565b600b546001600160a01b03163314611b085760405162461bcd60e51b8152600401610d6f90613b22565b601455565b600b546001600160a01b03163314611b375760405162461bcd60e51b8152600401610d6f90613b22565b6015805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314611b7e5760405162461bcd60e51b8152600401610d6f90613b22565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6016546001600160a01b03163314611bfa5760405162461bcd60e51b815260206004820152601a60248201527f63616c6c6572206973206e6f74206d696e74206d616e616765720000000000006044820152606401610d6f565b601254816011546001611c0d9190613c7b565b611c179190613cc6565b1015611c655760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420616c6c6f636174656420666f72206d696e74206d616e6167657200006044820152606401610d6f565b60005b81811015611ca457611c7c83601154612db8565b60118054906000611c8c83613d09565b91905055508080611c9c90613d5b565b915050611c68565b508060106000828254611cb79190613c7b565b90915550505050565b6002600a541415611ce35760405162461bcd60e51b8152600401610d6f90613beb565b6002600a55333214611d075760405162461bcd60e51b8152600401610d6f90613ba8565b61271083601054600f54611d1b9190613c7b565b611d259190613c7b565b1115611d735760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610d6f565b60008311611db35760405162461bcd60e51b815260206004820152600d60248201526c04d757374206d696e74203e203609c1b6044820152606401610d6f565b3483600e54611dc29190613ca7565b1115611de05760405162461bcd60e51b8152600401610d6f90613afa565b60125483600f54611df19190613c7b565b10611e295760405162461bcd60e51b81526020600482015260086024820152671c995cd95c9d995960c21b6044820152606401610d6f565b60155462010000900460ff1615611e8357600a831115611e7e5760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081b5a5b9d60821b6044820152606401610d6f565b611fa9565b601554610100900460ff16611eda5760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77206c697374206973206e6f742061637469766500000000000000006044820152606401610d6f565b611ee5338383612150565b611f255760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b6044820152606401610d6f565b600d54336000908152601c6020526040902054611f43908590613c7b565b1115611f845760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081b5a5b9d60821b6044820152606401610d6f565b336000908152601c602052604081208054859290611fa3908490613c7b565b90915550505b6000600f546001611fba9190613c7b565b90505b83600f54611fcb9190613c7b565b8111611fed57611fdb3382612db8565b80611fe581613d5b565b915050611fbd565b5082600f60008282546120009190613c7b565b90915550506001600a55505050565b606060018054610cc290613d20565b600b546001600160a01b031633146120485760405162461bcd60e51b8152600401610d6f90613b22565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b612075338383612f3d565b5050565b60008060038360ff16141561209d57506000838152601d60205260409020546120ad565b6120aa8360ff168561300c565b90505b6120b681612a9d565b6121025760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e74206b61726d6100000000006044820152606401610d6f565b9392505050565b600060038260ff16141561212e57506000828152601d60205260409020541515610cad565b600061213d8360ff168561300c565b905061214881612a9d565b949350505050565b6000612148838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613076565b600b546001600160a01b031633146121f25760405162461bcd60e51b8152600401610d6f90613b22565b601a54600160a01b900460ff16156122445760405162461bcd60e51b81526020600482015260156024820152741c995b99195c90dbdb9d1c9858dd081b1bd8dad959605a1b6044820152606401610d6f565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6122703383612b28565b61228c5760405162461bcd60e51b8152600401610d6f90613b57565b6122988484848461308c565b50505050565b6018546001600160a01b031633146122ec5760405162461bcd60e51b815260206004820152601160248201527063616c6c6572206973206e6f742044414f60781b6044820152606401610d6f565b6002600a54141561230f5760405162461bcd60e51b8152600401610d6f90613beb565b6002600a8190556000906123239047613c93565b60185490915061233c906001600160a01b031682612dd2565b601954612352906001600160a01b031682612dd2565b506001600a55565b606061236582612a9d565b6123a85760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610d6f565b601a546013546040516392cb829d60e01b81526004810185905260248101919091526001600160a01b03909116906392cb829d9060440160006040518083038186803b1580156123f757600080fd5b505afa15801561240b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610cad919081019061391c565b600b546001600160a01b0316331461245d5760405162461bcd60e51b8152600401610d6f90613b22565b6015805460ff19811660ff90911615179055565b600b546001600160a01b0316331461249b5760405162461bcd60e51b8152600401610d6f90613b22565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a5414156124e05760405162461bcd60e51b8152600401610d6f90613beb565b6002600a556015546301000000900460ff1661253e5760405162461bcd60e51b815260206004820152601960248201527f44657373657274206973206e6f742073657276656420796574000000000000006044820152606401610d6f565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f000000000000000000000000960b7a6bcd451c9968473f7bbfd9be826efd549a1690636352211e9060240160206040518083038186803b1580156125a057600080fd5b505afa1580156125b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d89190613663565b6001600160a01b03161461263a5760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e6572206f6620746865206d6f6e6044820152626b657960e81b6064820152608401610d6f565b604051627eeac760e11b8152336004820152602481018390526000907f0000000000000000000000005079fc4e96338be1b5aff236ff4b00ec4452b2d36001600160a01b03169062fdd58e9060440160206040518083038186803b1580156126a157600080fd5b505afa1580156126b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126d99190613993565b116127265760405162461bcd60e51b815260206004820152601b60248201527f596f7520646f206e6f74206861766520746865206465737365727400000000006044820152606401610d6f565b600060038314156128015761753f600c5411156127785760405162461bcd60e51b815260206004820152601060248201526f4e6f206d6f726520446573736572743360801b6044820152606401610d6f565b6000828152601d6020526040902054156127d45760405162461bcd60e51b815260206004820152601760248201527f4d6f6e6b657920616c7265616479206174652063616b650000000000000000006044820152606401610d6f565b50600c80546000838152601d60205260408120829055909182916127f783613d5b565b9190505550612873565b61280b838361300c565b905061281681612a9d565b156128735760405162461bcd60e51b815260206004820152602760248201527f4d6f6e6b657920616c72656164792061746520746869732074797065206f662060448201526619195cdcd95c9d60ca1b6064820152608401610d6f565b601554640100000000900460ff166128e657336000908152601b6020526040902054156128bf57336000908152601b602052604081208054916128b583613d09565b91905055506128e6565b34666a94d74f43000011156128e65760405162461bcd60e51b8152600401610d6f90613afa565b604051633078f6fd60e01b8152600481018490523360248201527f0000000000000000000000005079fc4e96338be1b5aff236ff4b00ec4452b2d36001600160a01b031690633078f6fd90604401600060405180830381600087803b15801561294e57600080fd5b505af1158015612962573d6000803e3d6000fd5b505050506129703382612db8565b604080518281523360208201527f83d592153e0cfdda4e05d880282028e735e856059c9ff144be1701a576d827cb910160405180910390a150506001600a5550565b600b546001600160a01b031633146129dc5760405162461bcd60e51b8152600401610d6f90613b22565b6001600160a01b038116612a415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d6f565b612a4a81612eeb565b50565b60006001600160e01b031982166380ac58cd60e01b1480612a7e57506001600160e01b03198216635b5e139f60e01b145b80610cad57506301ffc9a760e01b6001600160e01b0319831614610cad565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612aef826119aa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b3382612a9d565b612b945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d6f565b6000612b9f836119aa565b9050806001600160a01b0316846001600160a01b03161480612be657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806121485750836001600160a01b0316612bff84610d9b565b6001600160a01b031614949350505050565b826001600160a01b0316612c24826119aa565b6001600160a01b031614612c885760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d6f565b6001600160a01b038216612cea5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d6f565b612cf58383836130bf565b612d00600082612aba565b6001600160a01b0383166000908152600360205260408120805460019290612d29908490613cc6565b90915550506001600160a01b0382166000908152600360205260408120805460019290612d57908490613c7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612075828260405180602001604052806000815250613177565b80471015612e225760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d6f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e6f576040519150601f19603f3d011682016040523d82523d6000602084013e612e74565b606091505b5050905080610f345760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d6f565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612f9f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d6f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000600383141561305f5760405162461bcd60e51b815260206004820152601d60248201527f6b61726d61332049442063616e27742062652063616c63756c617465640000006044820152606401610d6f565b8161306c61271085613ca7565b6121029190613c7b565b60008261308385846131aa565b14949350505050565b613097848484612c11565b6130a38484848461321e565b6122985760405162461bcd60e51b8152600401610d6f90613aa8565b6001600160a01b03831661311a5761311581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61313d565b816001600160a01b0316836001600160a01b03161461313d5761313d838261332b565b6001600160a01b03821661315457610f34816133c8565b826001600160a01b0316826001600160a01b031614610f3457610f348282613477565b61318183836134bb565b61318e600084848461321e565b610f345760405162461bcd60e51b8152600401610d6f90613aa8565b600081815b84518110156132165760008582815181106131cc576131cc613dcc565b602002602001015190508083116131f25760008381526020829052604090209250613203565b600081815260208490526040902092505b508061320e81613d5b565b9150506131af565b509392505050565b60006001600160a01b0384163b1561332057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613262903390899088908890600401613a58565b602060405180830381600087803b15801561327c57600080fd5b505af19250505080156132ac575060408051601f3d908101601f191682019092526132a9918101906138ff565b60015b613306573d8080156132da576040519150601f19603f3d011682016040523d82523d6000602084013e6132df565b606091505b5080516132fe5760405162461bcd60e51b8152600401610d6f90613aa8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612148565b506001949350505050565b6000600161333884611a21565b6133429190613cc6565b600083815260076020526040902054909150808214613395576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906133da90600190613cc6565b6000838152600960205260408120546008805493945090928490811061340257613402613dcc565b90600052602060002001549050806008838154811061342357613423613dcc565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061345b5761345b613db6565b6001900381819060005260206000200160009055905550505050565b600061348283611a21565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166135115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d6f565b61351a81612a9d565b156135675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d6f565b613573600083836130bf565b6001600160a01b038216600090815260036020526040812080546001929061359c908490613c7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008083601f84011261360c57600080fd5b50813567ffffffffffffffff81111561362457600080fd5b6020830191508360208260051b850101111561363f57600080fd5b9250929050565b60006020828403121561365857600080fd5b813561210281613df8565b60006020828403121561367557600080fd5b815161210281613df8565b6000806040838503121561369357600080fd5b823561369e81613df8565b915060208301356136ae81613df8565b809150509250929050565b6000806000606084860312156136ce57600080fd5b83356136d981613df8565b925060208401356136e981613df8565b929592945050506040919091013590565b6000806000806080858703121561371057600080fd5b843561371b81613df8565b9350602085013561372b81613df8565b925060408501359150606085013567ffffffffffffffff81111561374e57600080fd5b8501601f8101871361375f57600080fd5b803561377261376d82613c53565b613c22565b81815288602083850101111561378757600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806000604084860312156137be57600080fd5b83356137c981613df8565b9250602084013567ffffffffffffffff8111156137e557600080fd5b6137f1868287016135fa565b9497909650939450505050565b6000806040838503121561381157600080fd5b823561381c81613df8565b9150602083013580151581146136ae57600080fd5b6000806040838503121561384457600080fd5b823561384f81613df8565b946020939093013593505050565b6000806000806040858703121561387357600080fd5b843567ffffffffffffffff8082111561388b57600080fd5b613897888389016135fa565b909650945060208701359150808211156138b057600080fd5b506138bd878288016135fa565b95989497509550505050565b6000602082840312156138db57600080fd5b5035919050565b6000602082840312156138f457600080fd5b813561210281613e0d565b60006020828403121561391157600080fd5b815161210281613e0d565b60006020828403121561392e57600080fd5b815167ffffffffffffffff81111561394557600080fd5b8201601f8101841361395657600080fd5b805161396461376d82613c53565b81815285602083850101111561397957600080fd5b61398a826020830160208601613cdd565b95945050505050565b6000602082840312156139a557600080fd5b5051919050565b6000806000604084860312156139c157600080fd5b83359250602084013567ffffffffffffffff8111156137e557600080fd5b600080604083850312156139f257600080fd5b50508035926020909101359150565b60008060408385031215613a1457600080fd5b82359150602083013560ff811681146136ae57600080fd5b60008151808452613a44816020860160208601613cdd565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a8b90830184613a2c565b9695505050505050565b6020815260006121026020830184613a2c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d08aa89040dcdee840cadcdeeaced60931b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f596f752063616e6e6f74206d696e742066726f6d20736d61727420636f6e74726040820152621858dd60ea1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c4b57613c4b613de2565b604052919050565b600067ffffffffffffffff821115613c6d57613c6d613de2565b50601f01601f191660200190565b60008219821115613c8e57613c8e613d8a565b500190565b600082613ca257613ca2613da0565b500490565b6000816000190483118215151615613cc157613cc1613d8a565b500290565b600082821015613cd857613cd8613d8a565b500390565b60005b83811015613cf8578181015183820152602001613ce0565b838111156122985750506000910152565b600081613d1857613d18613d8a565b506000190190565b600181811c90821680613d3457607f821691505b60208210811415613d5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d6f57613d6f613d8a565b5060010190565b600082613d8557613d85613da0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612a4a57600080fd5b6001600160e01b031981168114612a4a57600080fdfea26469706673582212204c31db63a3bc64c65f0011c55192cd6615f2339cad17a68d943412c03c0f336e64736f6c63430008060033

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

000000000000000000000000960b7a6bcd451c9968473f7bbfd9be826efd549a0000000000000000000000005079fc4e96338be1b5aff236ff4b00ec4452b2d30000000000000000000000002b6f861ae6419e51aeab201fb5f89706766e7dba000000000000000000000000be53d018dc774c0d263f0f435f3b4749d80e2566000000000000000000000000b2a75db67081d1b8d5622374960c5e89e243afb9

-----Decoded View---------------
Arg [0] : ocmAddress (address): 0x960b7a6BCD451c9968473f7bbFd9Be826EFd549A
Arg [1] : dessertAddress (address): 0x5079FC4e96338be1B5aff236ff4b00eC4452B2D3
Arg [2] : allowListNFTAddress (address): 0x2B6f861ae6419e51aEab201fB5F89706766E7dbA
Arg [3] : randomizerAddress (address): 0xbe53D018Dc774c0d263f0F435f3B4749D80E2566
Arg [4] : renderingAddress (address): 0xB2a75Db67081d1B8D5622374960C5E89E243afB9

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000960b7a6bcd451c9968473f7bbfd9be826efd549a
Arg [1] : 0000000000000000000000005079fc4e96338be1b5aff236ff4b00ec4452b2d3
Arg [2] : 0000000000000000000000002b6f861ae6419e51aeab201fb5f89706766e7dba
Arg [3] : 000000000000000000000000be53d018dc774c0d263f0f435f3b4749d80e2566
Arg [4] : 000000000000000000000000b2a75db67081d1b8d5622374960c5e89e243afb9


Deployed Bytecode Sourcemap

1729:12933:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990:222:5;;;;;;;;;;-1:-1:-1;990:222:5;;;;;:::i;:::-;;:::i;:::-;;;10589:14:15;;10582:22;10564:41;;10552:2;10537:18;990:222:5;;;;;;;;2488:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10431:127:14:-;;;;;;;;;;;;;:::i;:::-;;4000:217:2;;;;;;;;;;-1:-1:-1;4000:217:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9321:32:15;;;9303:51;;9291:2;9276:18;4000:217:2;9258:102:15;3538:401:2;;;;;;;;;;-1:-1:-1;3538:401:2;;;;;:::i;:::-;;:::i;9944:112:14:-;;;;;;;;;;-1:-1:-1;9944:112:14;;;;;:::i;:::-;;:::i;10288:106::-;;;;;;;;;;;;;:::i;1615:111:5:-;;;;;;;;;;-1:-1:-1;1702:10:5;:17;1615:111;;;28257:25:15;;;28245:2;28230:18;1615:111:5;28212:76:15;9834:104:14;;;;;;;;;;-1:-1:-1;9834:104:14;;;;;:::i;:::-;;:::i;3370:25::-;;;;;;;;;;-1:-1:-1;3370:25:14;;;;-1:-1:-1;;;;;3370:25:14;;;13676:160;;;;;;;;;;;;;:::i;4727:330:2:-;;;;;;;;;;-1:-1:-1;4727:330:2;;;;;:::i;:::-;;:::i;2580:45:14:-;;;;;;;;;;;;;;;;10920:110;;;;;;;;;;-1:-1:-1;10920:110:14;;;;;:::i;:::-;;:::i;10564:126::-;;;;;;;;;;-1:-1:-1;10564:126:14;;;;;:::i;:::-;;:::i;1291:253:5:-;;;;;;;;;;-1:-1:-1;1291:253:5;;;;;:::i;:::-;;:::i;13562:104:14:-;;;;;;;;;;-1:-1:-1;13562:104:14;;;;;:::i;:::-;;:::i;12490:229::-;;;;;;;;;;-1:-1:-1;12490:229:14;;;;;:::i;:::-;;:::i;7427:646::-;;;:::i;3174:33::-;;;;;;;;;;-1:-1:-1;3174:33:14;;;;;;;-1:-1:-1;;;;;3174:33:14;;;2816:35;;;;;;;;;;;;;;;;5123:179:2;;;;;;;;;;-1:-1:-1;5123:179:2;;;;;:::i;:::-;;:::i;11842:132:14:-;;;;;;;;;;;;;:::i;2384:45::-;;;;;;;;;;;;;;;;2924:43;;;;;;;;;;-1:-1:-1;2924:43:14;;;;;;;;11326:179;;;;;;;;;;-1:-1:-1;11326:179:14;;;;;:::i;:::-;;:::i;2973:43::-;;;;;;;;;;-1:-1:-1;2973:43:14;;;;;;;;;;;11737:99;;;;;;;;;;;;;:::i;12259:225::-;;;;;;;;;;-1:-1:-1;12259:225:14;;;;;:::i;:::-;;:::i;1798:230:5:-;;;;;;;;;;-1:-1:-1;1798:230:5;;;;;:::i;:::-;;:::i;9474:233:14:-;;;;;;;;;;-1:-1:-1;9474:233:14;;;;;:::i;:::-;;:::i;3919:47::-;;;;;;;;;;-1:-1:-1;3919:47:14;;;;;:::i;:::-;;;;;;;;;;;;;;5539:306;;;;;;;;;;-1:-1:-1;5539:306:14;;;;;:::i;:::-;;:::i;9713:115::-;;;;;;;;;;;;;:::i;2191:235:2:-;;;;;;;;;;-1:-1:-1;2191:235:2;;;;;:::i;:::-;;:::i;3402:30:14:-;;;;;;;;;;-1:-1:-1;3402:30:14;;;;-1:-1:-1;;;;;3402:30:14;;;1929:205:2;;;;;;;;;;-1:-1:-1;1929:205:2;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;2074:38:14:-;;;;;;;;;;;;;;;;10696:108;;;;;;;;;;-1:-1:-1;10696:108:14;;;;;:::i;:::-;;:::i;3258:26::-;;;;;;;;;;-1:-1:-1;3258:26:14;;;;-1:-1:-1;;;;;3258:26:14;;;3315:29;;;;;;;;;;-1:-1:-1;3315:29:14;;;;-1:-1:-1;;;;;3315:29:14;;;10062:103;;;;;;;;;;;;;:::i;10810:104::-;;;;;;;;;;-1:-1:-1;10810:104:14;;;;;:::i;:::-;;:::i;2276:45::-;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;3868:45:14;;;;;;;;;;-1:-1:-1;3868:45:14;;;;;:::i;:::-;;;;;;;;;;;;;;5851:413;;;;;;;;;;-1:-1:-1;5851:413:14;;;;;:::i;:::-;;:::i;6270:1109::-;;;;;;:::i;:::-;;:::i;2650:102:2:-;;;;;;;;;;;;;:::i;11036::14:-;;;;;;;;;;-1:-1:-1;11036:102:14;;;;;:::i;:::-;;:::i;3690:51::-;;;;;;;;;;-1:-1:-1;3690:51:14;;;;;:::i;:::-;;;;;;;;;;;;;;4284:153:2;;;;;;;;;;-1:-1:-1;4284:153:2;;;;;:::i;:::-;;:::i;12830:414:14:-;;;;;;;;;;-1:-1:-1;12830:414:14;;;;;:::i;:::-;;:::i;13250:302::-;;;;;;;;;;-1:-1:-1;13250:302:14;;;;;:::i;:::-;;:::i;3071:43::-;;;;;;;;;;-1:-1:-1;3071:43:14;;;;;;;;;;;14116:196;;;;;;;;;;-1:-1:-1;14116:196:14;;;;;:::i;:::-;;:::i;11511:219::-;;;;;;;;;;-1:-1:-1;11511:219:14;;;;;:::i;:::-;;:::i;5368:320:2:-;;;;;;;;;;-1:-1:-1;5368:320:2;;;;;:::i;:::-;;:::i;3022:43:14:-;;;;;;;;;;-1:-1:-1;3022:43:14;;;;;;;;;;;11980:224;;;;;;;;;;;;;:::i;13842:212::-;;;;;;;;;;-1:-1:-1;13842:212:14;;;;;:::i;:::-;;:::i;10171:111::-;;;;;;;;;;;;;:::i;3636:43::-;;;;;;;;;;-1:-1:-1;3636:43:14;;;;-1:-1:-1;;;3636:43:14;;;;;;3120;;;;;;;;;;-1:-1:-1;3120:43:14;;;;;;;;;;;11144:112;;;;;;;;;;-1:-1:-1;11144:112:14;;;;;:::i;:::-;;:::i;8134:1292::-;;;;;;:::i;:::-;;:::i;4503:162:2:-;;;;;;;;;;-1:-1:-1;4503:162:2;;;;;:::i;:::-;-1:-1:-1;;;;;4623:25:2;;;4600:4;4623:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4503:162;2693:47:14;;;;;;;;;;;;;;;;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;2178:36:14:-;;;;;;;;;;;;;;;;990:222:5;1092:4;-1:-1:-1;;;;;;1115:50:5;;-1:-1:-1;;;1115:50:5;;:90;;;1169:36;1193:11;1169:23;:36::i;:::-;1108:97;990:222;-1:-1:-1;;990:222:5:o;2488:98:2:-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;10431:127:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;10528:23:14::1;::::0;;-1:-1:-1;;10501:50:14;::::1;10528:23:::0;;;;::::1;;;10527:24;10501:50:::0;;::::1;;::::0;;10431:127::o;4000:217:2:-;4076:7;4103:16;4111:7;4103;:16::i;:::-;4095:73;;;;-1:-1:-1;;;4095:73:2;;21944:2:15;4095:73:2;;;21926:21:15;21983:2;21963:18;;;21956:30;22022:34;22002:18;;;21995:62;-1:-1:-1;;;22073:18:15;;;22066:42;22125:19;;4095:73:2;21916:234:15;4095:73:2;-1:-1:-1;4186:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4186:24:2;;4000:217::o;3538:401::-;3618:13;3634:23;3649:7;3634:14;:23::i;:::-;3618:39;;3681:5;-1:-1:-1;;;;;3675:11:2;:2;-1:-1:-1;;;;;3675:11:2;;;3667:57;;;;-1:-1:-1;;;3667:57:2;;24170:2:15;3667:57:2;;;24152:21:15;24209:2;24189:18;;;24182:30;24248:34;24228:18;;;24221:62;-1:-1:-1;;;24299:18:15;;;24292:31;24340:19;;3667:57:2;24142:223:15;3667:57:2;719:10:9;-1:-1:-1;;;;;3756:21:2;;;;:62;;-1:-1:-1;3781:37:2;3798:5;719:10:9;4503:162:2;:::i;3781:37::-;3735:165;;;;-1:-1:-1;;;3735:165:2;;18214:2:15;3735:165:2;;;18196:21:15;18253:2;18233:18;;;18226:30;18292:34;18272:18;;;18265:62;18363:26;18343:18;;;18336:54;18407:19;;3735:165:2;18186:246:15;3735:165:2;3911:21;3920:2;3924:7;3911:8;:21::i;:::-;3608:331;3538:401;;:::o;9944:112:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10021:19:14::1;:28:::0;9944:112::o;10288:106::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10371:16:14::1;::::0;;-1:-1:-1;;10351:36:14;::::1;10371:16:::0;;;;::::1;;;10370:17;10351:36:::0;;::::1;;::::0;;10288:106::o;9834:104::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;9907:9:14::1;:24:::0;9834:104::o;13676:160::-;13733:7;13803:26;;13775:25;;13759:13;1702:10:5;:17;;1615:111;13759:13:14;:41;;;;:::i;:::-;:70;;;;:::i;:::-;13752:77;;13676:160;:::o;4727:330:2:-;4916:41;719:10:9;4949:7:2;4916:18;:41::i;:::-;4908:103;;;;-1:-1:-1;;;4908:103:2;;;;;;;:::i;:::-;5022:28;5032:4;5038:2;5042:7;5022:9;:28::i;10920:110:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10996:14:14::1;:27:::0;;-1:-1:-1;;;;;;10996:27:14::1;-1:-1:-1::0;;;;;10996:27:14;;;::::1;::::0;;;::::1;::::0;;10920:110::o;10564:126::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10648:25:14::1;:35:::0;10564:126::o;1291:253:5:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;-1:-1:-1;;;1407:87:5;;11400:2:15;1407:87:5;;;11382:21:15;11439:2;11419:18;;;11412:30;11478:34;11458:18;;;11451:62;-1:-1:-1;;;11529:18:15;;;11522:41;11580:19;;1407:87:5;11372:233:15;1407:87:5;-1:-1:-1;;;;;;1511:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1291:253::o;13562:104:14:-;13620:4;13643:16;13651:7;13643;:16::i;12490:229::-;4287:14;;-1:-1:-1;;;;;4287:14:14;719:10:9;4287:30:14;4279:72;;;;-1:-1:-1;;;4279:72:14;;11042:2:15;4279:72:14;;;11024:21:15;11081:2;11061:18;;;11054:30;11120:31;11100:18;;;11093:59;11169:18;;4279:72:14;11014:179:15;4279:72:14;12614:9:::1;12610:103;12627:17:::0;;::::1;12610:103;;;12693:6;;12700:1;12693:9;;;;;;;:::i;:::-;;;;;;;12665:12;:25;12678:8;;12687:1;12678:11;;;;;;;:::i;:::-;;;;;;;12665:25;;;;;;;;;;;:37;;;;12646:3;;;;;:::i;:::-;;;;12610:103;;;;12490:229:::0;;;;:::o;7427:646::-;4667:18;;;;4659:59;;;;-1:-1:-1;;;4659:59:14;;21232:2:15;4659:59:14;;;21214:21:15;21271:2;21251:18;;;21244:30;21310;21290:18;;;21283:58;21358:18;;4659:59:14;21204:178:15;4659:59:14;1744:1:1::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:1::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;4788:10:14::2;4802:9;4788:23;4780:71;;;;-1:-1:-1::0;;;4780:71:14::2;;;;;;;:::i;:::-;7543:37:::3;::::0;-1:-1:-1;;;7543:37:14;;7566:10:::3;7543:37;::::0;::::3;10040:51:15::0;7578:1:14::3;10107:18:15::0;;;10100:34;7583:1:14::3;::::0;7543:12:::3;-1:-1:-1::0;;;;;7543:22:14::3;::::0;::::3;::::0;10013:18:15;;7543:37:14::3;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;7535:92;;;::::0;-1:-1:-1;;;7535:92:14;;23065:2:15;7535:92:14::3;::::0;::::3;23047:21:15::0;23104:2;23084:18;;;23077:30;23143:34;23123:18;;;23116:62;-1:-1:-1;;;23194:18:15;;;23187:36;23240:19;;7535:92:14::3;23037:228:15::0;7535:92:14::3;2063:5;7673:26;;7645:25;;:54;;;;:::i;:::-;:73;7637:112;;;::::0;-1:-1:-1;;;7637:112:14;;14151:2:15;7637:112:14::3;::::0;::::3;14133:21:15::0;14190:2;14170:18;;;14163:30;14229:28;14209:18;;;14202:56;14275:18;;7637:112:14::3;14123:176:15::0;7637:112:14::3;7799:25;::::0;7767::::3;::::0;:29:::3;::::0;7795:1:::3;7767:29;:::i;:::-;:57;7759:95;;;::::0;-1:-1:-1;;;7759:95:14;;17168:2:15;7759:95:14::3;::::0;::::3;17150:21:15::0;17207:2;17187:18;;;17180:30;17246:27;17226:18;;;17219:55;17291:18;;7759:95:14::3;17140:175:15::0;7759:95:14::3;7885:9;7872;;:22;;7864:49;;;;-1:-1:-1::0;;;7864:49:14::3;;;;;;;:::i;:::-;7923:48;::::0;-1:-1:-1;;;7923:48:14;;7960:10:::3;7923:48;::::0;::::3;9303:51:15::0;7923:12:14::3;-1:-1:-1::0;;;;;7923:36:14::3;::::0;::::3;::::0;9276:18:15;;7923:48:14::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;7981:25:14::3;:27:::0;;;-1:-1:-1;7981:25:14;-1:-1:-1;7981:25:14::3;:27;::::0;::::3;:::i;:::-;;;;;;8018:48;8028:10;8040:25;;8018:9;:48::i;:::-;1701:1:1::1;2628:7;:22:::0;7427:646:14:o;5123:179:2:-;5256:39;5273:4;5279:2;5283:7;5256:39;;;;;;;;;;;;:16;:39::i;11842:132:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1744:1:1::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:1::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;11909:58:14::2;11935:7;1108:6:0::0;;-1:-1:-1;;;;;1108:6:0;;1036:85;11935:7:14::2;11945:21;11909:17;:58::i;11326:179::-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;11420:5:14::1;11404:12;;:21;;11396:52;;;::::0;-1:-1:-1;;;11396:52:14;;22357:2:15;11396:52:14::1;::::0;::::1;22339:21:15::0;22396:2;22376:18;;;22369:30;-1:-1:-1;;;22415:18:15;;;22408:48;22473:18;;11396:52:14::1;22329:168:15::0;11396:52:14::1;11473:25;2063:5;11473:6:::0;:25:::1;:::i;:::-;11458:12;:40:::0;-1:-1:-1;11326:179:14:o;11737:99::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;11799:23:14::1;:30:::0;;-1:-1:-1;;;;11799:30:14::1;-1:-1:-1::0;;;11799:30:14::1;::::0;;11737:99::o;12259:225::-;4287:14;;-1:-1:-1;;;;;4287:14:14;719:10:9;4287:30:14;4279:72;;;;-1:-1:-1;;;4279:72:14;;11042:2:15;4279:72:14;;;11024:21:15;11081:2;11061:18;;;11054:30;11120:31;11100:18;;;11093:59;11169:18;;4279:72:14;11014:179:15;4279:72:14;12381:9:::1;12377:101;12394:17:::0;;::::1;12377:101;;;12458:6;;12465:1;12458:9;;;;;;;:::i;:::-;;;;;;;12432:10;:23;12443:8;;12452:1;12443:11;;;;;;;:::i;:::-;;;;;;;12432:23;;;;;;;;;;;:35;;;;12413:3;;;;;:::i;:::-;;;;12377:101;;1798:230:5::0;1873:7;1908:30;1702:10;:17;;1615:111;1908:30;1900:5;:38;1892:95;;;;-1:-1:-1;;;1892:95:5;;25734:2:15;1892:95:5;;;25716:21:15;25773:2;25753:18;;;25746:30;25812:34;25792:18;;;25785:62;-1:-1:-1;;;25863:18:15;;;25856:42;25915:19;;1892:95:5;25706:234:15;1892:95:5;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;1997:24;;1798:230;;;:::o;9474:233:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;9595:9:14::1;9591:110;9608:18:::0;;::::1;9591:110;;;9679:8;;9688:1;9679:11;;;;;;;:::i;:::-;;;;;;;9646:16;:30;9663:9;;9673:1;9663:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9646:30:14::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;9646:30:14;:44;9627:3;::::1;::::0;::::1;:::i;:::-;;;;9591:110;;5539:306:::0;4420:11;;-1:-1:-1;;;;;4420:11:14;719:10:9;4420:27:14;4412:66;;;;-1:-1:-1;;;4412:66:14;;21589:2:15;4412:66:14;;;21571:21:15;21628:2;21608:18;;;21601:30;21667:28;21647:18;;;21640:56;21713:18;;4412:66:14;21561:176:15;4412:66:14;5652:25:::1;;5626:22;;:51;;5618:94;;;::::0;-1:-1:-1;;;5618:94:14;;27954:2:15;5618:94:14::1;::::0;::::1;27936:21:15::0;27993:2;27973:18;;;27966:30;28032:32;28012:18;;;28005:60;28082:18;;5618:94:14::1;27926:180:15::0;5618:94:14::1;5722:44;5732:9;5743:22;;5722:9;:44::i;:::-;5776:22;:24:::0;;;:22:::1;:24;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;5810:26:14::1;:28:::0;;;:26:::1;:28;::::0;::::1;:::i;:::-;;;;;;5539:306:::0;:::o;9713:115::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;9802:19:14::1;::::0;;-1:-1:-1;;9779:42:14;::::1;9802:19:::0;;;;::::1;;;9801:20;9779:42:::0;;::::1;;::::0;;9713:115::o;2191:235:2:-;2263:7;2298:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2298:16:2;2332:19;2324:73;;;;-1:-1:-1;;;2324:73:2;;19050:2:15;2324:73:2;;;19032:21:15;19089:2;19069:18;;;19062:30;19128:34;19108:18;;;19101:62;-1:-1:-1;;;19179:18:15;;;19172:39;19228:19;;2324:73:2;19022:231:15;1929:205:2;2001:7;-1:-1:-1;;;;;2028:19:2;;2020:74;;;;-1:-1:-1;;;2020:74:2;;18639:2:15;2020:74:2;;;18621:21:15;18678:2;18658:18;;;18651:30;18717:34;18697:18;;;18690:62;-1:-1:-1;;;18768:18:15;;;18761:40;18818:19;;2020:74:2;18611:232:15;2020:74:2;-1:-1:-1;;;;;;2111:16:2;;;;;:9;:16;;;;;;;1929:205::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;10696:108:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10771:10:14::1;:26:::0;10696:108::o;10062:103::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10143:15:14::1;::::0;;-1:-1:-1;;10124:34:14;::::1;10143:15;::::0;;;::::1;;;10142:16;10124:34:::0;;::::1;;::::0;;10062:103::o;10810:104::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10883:11:14::1;:24:::0;;-1:-1:-1;;;;;;10883:24:14::1;-1:-1:-1::0;;;;;10883:24:14;;;::::1;::::0;;;::::1;::::0;;10810:104::o;5851:413::-;4420:11;;-1:-1:-1;;;;;4420:11:14;719:10:9;4420:27:14;4412:66;;;;-1:-1:-1;;;4412:66:14;;21589:2:15;4412:66:14;;;21571:21:15;21628:2;21608:18;;;21601:30;21667:28;21647:18;;;21640:56;21713:18;;4412:66:14;21561:176:15;4412:66:14;6001:25:::1;;5989:8;5964:22;;5987:1;5964:24;;;;:::i;:::-;:33;;;;:::i;:::-;:62;;5956:105;;;::::0;-1:-1:-1;;;5956:105:14;;27954:2:15;5956:105:14::1;::::0;::::1;27936:21:15::0;27993:2;27973:18;;;27966:30;28032:32;28012:18;;;28005:60;28082:18;;5956:105:14::1;27926:180:15::0;5956:105:14::1;6075:9;6071:141;6090:8;6088:1;:10;6071:141;;;6119:44;6129:9;6140:22;;6119:9;:44::i;:::-;6177:22;:24:::0;;;:22:::1;:24;::::0;::::1;:::i;:::-;;;;;;6100:3;;;;;:::i;:::-;;;;6071:141;;;;6249:8;6221:26;;:36;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;5851:413:14:o;6270:1109::-;1744:1:1;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:1;;;;;;;:::i;:::-;1744:1;2455:7;:18;4788:10:14::1;4802:9;4788:23;4780:71;;;;-1:-1:-1::0;;;4780:71:14::1;;;;;;;:::i;:::-;2063:5:::2;6464:9;6435:26;;6407:25;;:54;;;;:::i;:::-;:66;;;;:::i;:::-;:86;;6399:125;;;::::0;-1:-1:-1;;;6399:125:14;;14151:2:15;6399:125:14::2;::::0;::::2;14133:21:15::0;14190:2;14170:18;;;14163:30;14229:28;14209:18;;;14202:56;14275:18;;6399:125:14::2;14123:176:15::0;6399:125:14::2;6554:1;6542:9;:13;6534:39;;;::::0;-1:-1:-1;;;6534:39:14;;17522:2:15;6534:39:14::2;::::0;::::2;17504:21:15::0;17561:2;17541:18;;;17534:30;-1:-1:-1;;;17580:18:15;;;17573:43;17633:18;;6534:39:14::2;17494:163:15::0;6534:39:14::2;6618:9;6604;6592;;:21;;;;:::i;:::-;6591:36;;6583:63;;;;-1:-1:-1::0;;;6583:63:14::2;;;;;;;:::i;:::-;6704:25;;6692:9;6664:25;;:37;;;;:::i;:::-;:65;6656:86;;;::::0;-1:-1:-1;;;6656:86:14;;25398:2:15;6656:86:14::2;::::0;::::2;25380:21:15::0;25437:1;25417:18;;;25410:29;-1:-1:-1;;;25455:18:15;;;25448:38;25503:18;;6656:86:14::2;25370:157:15::0;6656:86:14::2;6756:16;::::0;;;::::2;;;6752:416;;;2169:2;6796:9;:36;;6788:65;;;::::0;-1:-1:-1;;;6788:65:14;;26551:2:15;6788:65:14::2;::::0;::::2;26533:21:15::0;26590:2;26570:18;;;26563:30;-1:-1:-1;;;26609:18:15;;;26602:46;26665:18;;6788:65:14::2;26523:166:15::0;6788:65:14::2;6752:416;;;6892:15;::::0;::::2;::::0;::::2;;;6884:52;;;::::0;-1:-1:-1;;;6884:52:14;;27241:2:15;6884:52:14::2;::::0;::::2;27223:21:15::0;27280:2;27260:18;;;27253:30;27319:26;27299:18;;;27292:54;27363:18;;6884:52:14::2;27213:174:15::0;6884:52:14::2;6958:36;6970:10;6982:11;;6958;:36::i;:::-;6950:66;;;::::0;-1:-1:-1;;;6950:66:14;;12231:2:15;6950:66:14::2;::::0;::::2;12213:21:15::0;12270:2;12250:18;;;12243:30;-1:-1:-1;;;12289:18:15;;;12282:47;12346:18;;6950:66:14::2;12203:167:15::0;6950:66:14::2;7072:19;::::0;7045:10:::2;7038:18;::::0;;;:6:::2;:18;::::0;;;;;:30:::2;::::0;7059:9;;7038:30:::2;:::i;:::-;:53;;7030:82;;;::::0;-1:-1:-1;;;7030:82:14;;26551:2:15;7030:82:14::2;::::0;::::2;26533:21:15::0;26590:2;26570:18;;;26563:30;-1:-1:-1;;;26609:18:15;;;26602:46;26665:18;;7030:82:14::2;26523:166:15::0;7030:82:14::2;7133:10;7126:18;::::0;;;:6:::2;:18;::::0;;;;:31;;7148:9;;7126:18;:31:::2;::::0;7148:9;;7126:31:::2;:::i;:::-;::::0;;;-1:-1:-1;;6752:416:14::2;7182:9;7194:25;;7222:1;7194:29;;;;:::i;:::-;7182:41;;7177:146;7258:9;7230:25;;:37;;;;:::i;:::-;7225:1;:42;7177:146;;7288:24;7298:10;7310:1;7288:9;:24::i;:::-;7269:3:::0;::::2;::::0;::::2;:::i;:::-;;;;7177:146;;;;7361:9;7332:25;;:38;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1701:1:1;2628:7;:22;-1:-1:-1;;;6270:1109:14:o;2650:102:2:-;2706:13;2738:7;2731:14;;;;;:::i;11036:102:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;11108:10:14::1;:23:::0;;-1:-1:-1;;;;;;11108:23:14::1;-1:-1:-1::0;;;;;11108:23:14;;;::::1;::::0;;;::::1;::::0;;11036:102::o;4284:153:2:-;4378:52;719:10:9;4411:8:2;4421;4378:18;:52::i;:::-;4284:153;;:::o;12830:414:14:-;12940:7;12959:15;1838:1;12988:11;:28;;;12984:164;;;-1:-1:-1;13042:21:14;;;;:11;:21;;;;;;12984:164;;;13104:33;13115:11;13104:33;;13128:8;13104:10;:33::i;:::-;13094:43;;12984:164;13165:16;13173:7;13165;:16::i;:::-;13157:56;;;;-1:-1:-1;;;13157:56:14;;19460:2:15;13157:56:14;;;19442:21:15;19499:2;19479:18;;;19472:30;19538:29;19518:18;;;19511:57;19585:18;;13157:56:14;19432:177:15;13157:56:14;13230:7;12830:414;-1:-1:-1;;;12830:414:14:o;13250:302::-;13345:4;1838:1;13365:11;:28;;;13361:91;;;-1:-1:-1;13440:1:14;13416:21;;;:11;:21;;;;;;:25;;13409:32;;13361:91;13461:15;13479:33;13490:11;13479:33;;13503:8;13479:10;:33::i;:::-;13461:51;;13529:16;13537:7;13529;:16::i;:::-;13522:23;13250:302;-1:-1:-1;;;;13250:302:14:o;14116:196::-;14204:4;14227:78;14246:11;;14227:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14259:10:14;;14281:22;;-1:-1:-1;;8862:2:15;8858:15;;;8854:53;14281:22:14;;;8842:66:15;14259:10:14;;-1:-1:-1;8924:12:15;;;-1:-1:-1;14281:22:14;;;;;;;;;;;;14271:33;;;;;;14227:18;:78::i;11511:219::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;11605:23:14::1;::::0;-1:-1:-1;;;11605:23:14;::::1;;;11604:24;11596:58;;;::::0;-1:-1:-1;;;11596:58:14;;17864:2:15;11596:58:14::1;::::0;::::1;17846:21:15::0;17903:2;17883:18;;;17876:30;-1:-1:-1;;;17922:18:15;;;17915:51;17983:18;;11596:58:14::1;17836:171:15::0;11596:58:14::1;11664:17;:59:::0;;-1:-1:-1;;;;;;11664:59:14::1;-1:-1:-1::0;;;;;11664:59:14;;;::::1;::::0;;;::::1;::::0;;11511:219::o;5368:320:2:-;5537:41;719:10:9;5570:7:2;5537:18;:41::i;:::-;5529:103;;;;-1:-1:-1;;;5529:103:2;;;;;;;:::i;:::-;5642:39;5656:4;5662:2;5666:7;5675:5;5642:13;:39::i;:::-;5368:320;;;;:::o;11980:224:14:-;4543:10;;-1:-1:-1;;;;;4543:10:14;719::9;4543:26:14;4535:56;;;;-1:-1:-1;;;4535:56:14;;23824:2:15;4535:56:14;;;23806:21:15;23863:2;23843:18;;;23836:30;-1:-1:-1;;;23882:18:15;;;23875:47;23939:18;;4535:56:14;23796:167:15;4535:56:14;1744:1:1::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:1::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;;;12043:13:14::2;::::0;12059:23:::2;::::0;:21:::2;:23;:::i;:::-;12118:10;::::0;12043:39;;-1:-1:-1;12092:45:14::2;::::0;-1:-1:-1;;;;;12118:10:14::2;12043:39:::0;12092:17:::2;:45::i;:::-;12173:15;::::0;12147:50:::2;::::0;-1:-1:-1;;;;;12173:15:14::2;12191:5:::0;12147:17:::2;:50::i;:::-;-1:-1:-1::0;1701:1:1::1;2628:7;:22:::0;11980:224:14:o;13842:212::-;13907:13;13940:16;13948:7;13940;:16::i;:::-;13932:49;;;;-1:-1:-1;;;13932:49:14;;15692:2:15;13932:49:14;;;15674:21:15;15731:2;15711:18;;;15704:30;-1:-1:-1;;;15750:18:15;;;15743:50;15810:18;;13932:49:14;15664:170:15;13932:49:14;13998:17;;14034:12;;13998:49;;-1:-1:-1;;;13998:49:14;;;;;28746:25:15;;;28787:18;;;28780:34;;;;-1:-1:-1;;;;;13998:17:14;;;;:26;;28719:18:15;;13998:49:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13998:49:14;;;;;;;;;;;;:::i;10171:111::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;10257:18:14::1;::::0;;-1:-1:-1;;10236:39:14;::::1;10257:18;::::0;;::::1;10256:19;10236:39;::::0;;10171:111::o;11144:112::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;11221:15:14::1;:28:::0;;-1:-1:-1;;;;;;11221:28:14::1;-1:-1:-1::0;;;;;11221:28:14;;;::::1;::::0;;;::::1;::::0;;11144:112::o;8134:1292::-;1744:1:1;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:1;;;;;;;:::i;:::-;1744:1;2455:7;:18;8241:19:14::1;::::0;;;::::1;;;8233:57;;;::::0;-1:-1:-1;;;8233:57:14;;19816:2:15;8233:57:14::1;::::0;::::1;19798:21:15::0;19855:2;19835:18;;;19828:30;19894:27;19874:18;;;19867:55;19939:18;;8233:57:14::1;19788:175:15::0;8233:57:14::1;8308:21;::::0;-1:-1:-1;;;8308:21:14;;::::1;::::0;::::1;28257:25:15::0;;;8333:10:14::1;::::0;-1:-1:-1;;;;;8308:3:14::1;:11;::::0;::::1;::::0;28230:18:15;;8308:21:14::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;8308:35:14::1;;8300:83;;;::::0;-1:-1:-1;;;8300:83:14;;13747:2:15;8300:83:14::1;::::0;::::1;13729:21:15::0;13786:2;13766:18;;;13759:30;13825:34;13805:18;;;13798:62;-1:-1:-1;;;13876:18:15;;;13869:33;13919:19;;8300:83:14::1;13719:225:15::0;8300:83:14::1;8401:42;::::0;-1:-1:-1;;;8401:42:14;;8419:10:::1;8401:42;::::0;::::1;10040:51:15::0;10107:18;;;10100:34;;;8446:1:14::1;::::0;8401:7:::1;-1:-1:-1::0;;;;;8401:17:14::1;::::0;::::1;::::0;10013:18:15;;8401:42:14::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;8393:86;;;::::0;-1:-1:-1;;;8393:86:14;;16399:2:15;8393:86:14::1;::::0;::::1;16381:21:15::0;16438:2;16418:18;;;16411:30;16477:29;16457:18;;;16450:57;16524:18;;8393:86:14::1;16371:177:15::0;8393:86:14::1;8490:15;1838:1;8519:11;:28;8515:459;;;1886:5;8571:12;;:29;;8563:58;;;::::0;-1:-1:-1;;;8563:58:14;;26896:2:15;8563:58:14::1;::::0;::::1;26878:21:15::0;26935:2;26915:18;;;26908:30;-1:-1:-1;;;26954:18:15;;;26947:46;27010:18;;8563:58:14::1;26868:166:15::0;8563:58:14::1;8643:21;::::0;;;:11:::1;:21;::::0;;;;;:26;8635:62:::1;;;::::0;-1:-1:-1;;;8635:62:14;;23472:2:15;8635:62:14::1;::::0;::::1;23454:21:15::0;23511:2;23491:18;;;23484:30;23550:25;23530:18;;;23523:53;23593:18;;8635:62:14::1;23444:173:15::0;8635:62:14::1;-1:-1:-1::0;8721:12:14::1;::::0;;8747:21:::1;::::0;;;:11:::1;:21;::::0;;;;:31;;;8721:12;;;;8792:14:::1;8721:12:::0;8792:14:::1;:::i;:::-;;;;;;8515:459;;;8847:33;8858:11;8871:8;8847:10;:33::i;:::-;8837:43;;8903:16;8911:7;8903;:16::i;:::-;8902:17;8894:69;;;::::0;-1:-1:-1;;;8894:69:14;;24572:2:15;8894:69:14::1;::::0;::::1;24554:21:15::0;24611:2;24591:18;;;24584:30;24650:34;24630:18;;;24623:62;-1:-1:-1;;;24701:18:15;;;24694:37;24748:19;;8894:69:14::1;24544:229:15::0;8894:69:14::1;8989:23;::::0;;;::::1;;;8984:251;;9050:10;9064:1;9033:28:::0;;;:16:::1;:28;::::0;;;;;:32;9029:196:::1;;9103:10;9086:28;::::0;;;:16:::1;:28;::::0;;;;:30;;;::::1;::::0;::::1;:::i;:::-;;;;;;9029:196;;;9181:9;2260:10;9165:25;;9157:52;;;;-1:-1:-1::0;;;9157:52:14::1;;;;;;;:::i;:::-;9244:54;::::0;-1:-1:-1;;;9244:54:14;;::::1;::::0;::::1;28467:25:15::0;;;9287:10:14::1;28508:18:15::0;;;28501:60;9244:7:14::1;-1:-1:-1::0;;;;;9244:29:14::1;::::0;::::1;::::0;28440:18:15;;9244:54:14::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;9308:30;9318:10;9330:7;9308:9;:30::i;:::-;9353:33;::::0;;28467:25:15;;;9375:10:14::1;28523:2:15::0;28508:18;;28501:60;9353:33:14::1;::::0;28440:18:15;9353:33:14::1;;;;;;;-1:-1:-1::0;;1701:1:1;2628:7;:22;-1:-1:-1;8134:1292:14:o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;12577:2:15;1998:73:0::1;::::0;::::1;12559:21:15::0;12616:2;12596:18;;;12589:30;12655:34;12635:18;;;12628:62;-1:-1:-1;;;12706:18:15;;;12699:36;12752:19;;1998:73:0::1;12549:228:15::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;1570:300:2:-;1672:4;-1:-1:-1;;;;;;1707:40:2;;-1:-1:-1;;;1707:40:2;;:104;;-1:-1:-1;;;;;;;1763:48:2;;-1:-1:-1;;;1763:48:2;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:12;;;1827:36:2;829:155:12;7160:125:2;7225:4;7248:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7248:16:2;:30;;;7160:125::o;11169:171::-;11243:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11243:29:2;-1:-1:-1;;;;;11243:29:2;;;;;;;;:24;;11296:23;11243:24;11296:14;:23::i;:::-;-1:-1:-1;;;;;11287:46:2;;;;;;;;;;;11169:171;;:::o;7443:344::-;7536:4;7560:16;7568:7;7560;:16::i;:::-;7552:73;;;;-1:-1:-1;;;7552:73:2;;16755:2:15;7552:73:2;;;16737:21:15;16794:2;16774:18;;;16767:30;16833:34;16813:18;;;16806:62;-1:-1:-1;;;16884:18:15;;;16877:42;16936:19;;7552:73:2;16727:234:15;7552:73:2;7635:13;7651:23;7666:7;7651:14;:23::i;:::-;7635:39;;7703:5;-1:-1:-1;;;;;7692:16:2;:7;-1:-1:-1;;;;;7692:16:2;;:52;;;-1:-1:-1;;;;;;4623:25:2;;;4600:4;4623:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7712:32;7692:87;;;;7772:7;-1:-1:-1;;;;;7748:31:2;:20;7760:7;7748:11;:20::i;:::-;-1:-1:-1;;;;;7748:31:2;;;7443:344;-1:-1:-1;;;;7443:344:2:o;10453:605::-;10607:4;-1:-1:-1;;;;;10580:31:2;:23;10595:7;10580:14;:23::i;:::-;-1:-1:-1;;;;;10580:31:2;;10572:81;;;;-1:-1:-1;;;10572:81:2;;12984:2:15;10572:81:2;;;12966:21:15;13023:2;13003:18;;;12996:30;13062:34;13042:18;;;13035:62;-1:-1:-1;;;13113:18:15;;;13106:35;13158:19;;10572:81:2;12956:227:15;10572:81:2;-1:-1:-1;;;;;10671:16:2;;10663:65;;;;-1:-1:-1;;;10663:65:2;;14506:2:15;10663:65:2;;;14488:21:15;14545:2;14525:18;;;14518:30;14584:34;14564:18;;;14557:62;-1:-1:-1;;;14635:18:15;;;14628:34;14679:19;;10663:65:2;14478:226:15;10663:65:2;10739:39;10760:4;10766:2;10770:7;10739:20;:39::i;:::-;10840:29;10857:1;10861:7;10840:8;:29::i;:::-;-1:-1:-1;;;;;10880:15:2;;;;;;:9;:15;;;;;:20;;10899:1;;10880:15;:20;;10899:1;;10880:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10910:13:2;;;;;;:9;:13;;;;;:18;;10927:1;;10910:13;:18;;10927:1;;10910:18;:::i;:::-;;;;-1:-1:-1;;10938:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10938:21:2;-1:-1:-1;;;;;10938:21:2;;;;;;;;;10975:27;;10938:16;;10975:27;;;;;;;3608:331;3538:401;;:::o;8117:108::-;8192:26;8202:2;8206:7;8192:26;;;;;;;;;;;;:9;:26::i;2412:312:8:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:8;;16041:2:15;2493:73:8;;;16023:21:15;16080:2;16060:18;;;16053:30;16119:31;16099:18;;;16092:59;16168:18;;2493:73:8;16013:179:15;2493:73:8;2578:12;2596:9;-1:-1:-1;;;;;2596:14:8;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:8;;15265:2:15;2639:78:8;;;15247:21:15;15304:2;15284:18;;;15277:30;15343:34;15323:18;;;15316:62;15414:28;15394:18;;;15387:56;15460:19;;2639:78:8;15237:248:15;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;11475:307:2:-;11625:8;-1:-1:-1;;;;;11616:17:2;:5;-1:-1:-1;;;;;11616:17:2;;;11608:55;;;;-1:-1:-1;;;11608:55:2;;14911:2:15;11608:55:2;;;14893:21:15;14950:2;14930:18;;;14923:30;14989:27;14969:18;;;14962:55;15034:18;;11608:55:2;14883:175:15;11608:55:2;-1:-1:-1;;;;;11673:25:2;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11673:46:2;;;;;;;;;;11734:41;;10564::15;;;11734::2;;10537:18:15;11734:41:2;;;;;;;11475:307;;;:::o;14423:236:14:-;14505:7;1838:1;14532:11;:28;;14524:70;;;;-1:-1:-1;;;14524:70:14;;20513:2:15;14524:70:14;;;20495:21:15;20552:2;20532:18;;;20525:30;20591:31;20571:18;;;20564:59;20640:18;;14524:70:14;20485:179:15;14524:70:14;14644:8;14611:30;2063:5;14611:11;:30;:::i;:::-;:41;;;;:::i;1154:184:11:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:11:o;6550:307:2:-;6701:28;6711:4;6717:2;6721:7;6701:9;:28::i;:::-;6747:48;6770:4;6776:2;6780:7;6789:5;6747:22;:48::i;:::-;6739:111;;;;-1:-1:-1;;;6739:111:2;;;;;;;:::i;2624:572:5:-;-1:-1:-1;;;;;2823:18:5;;2819:183;;2857:40;2889:7;4005:10;:17;;3978:24;;;;:15;:24;;;;;:44;;;4032:24;;;;;;;;;;;;3902:161;2857:40;2819:183;;;2926:2;-1:-1:-1;;;;;2918:10:5;:4;-1:-1:-1;;;;;2918:10:5;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;-1:-1:-1;;;;;3015:16:5;;3011:179;;3047:45;3084:7;3047:36;:45::i;3011:179::-;3119:4;-1:-1:-1;;;;;3113:10:5;:2;-1:-1:-1;;;;;3113:10:5;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;8446:311:2:-;8571:18;8577:2;8581:7;8571:5;:18::i;:::-;8620:54;8651:1;8655:2;8659:7;8668:5;8620:22;:54::i;:::-;8599:151;;;;-1:-1:-1;;;8599:151:2;;;;;;;:::i;1689:662:11:-;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:11;;;;:::i;:::-;;;;1828:488;;;-1:-1:-1;2332:12:11;1689:662;-1:-1:-1;;;1689:662:11:o;12335:778:2:-;12485:4;-1:-1:-1;;;;;12505:13:2;;1465:19:8;:23;12501:606:2;;12540:72;;-1:-1:-1;;;12540:72:2;;-1:-1:-1;;;;;12540:36:2;;;;;:72;;719:10:9;;12591:4:2;;12597:7;;12606:5;;12540:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12540:72:2;;;;;;;;-1:-1:-1;;12540:72:2;;;;;;;;;;;;:::i;:::-;;;12536:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12779:13:2;;12775:266;;12821:60;;-1:-1:-1;;;12821:60:2;;;;;;;:::i;12775:266::-;12993:6;12987:13;12978:6;12974:2;12970:15;12963:38;12536:519;-1:-1:-1;;;;;;12662:51:2;-1:-1:-1;;;12662:51:2;;-1:-1:-1;12655:58:2;;12501:606;-1:-1:-1;13092:4:2;12335:778;;;;;;:::o;4680:970:5:-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;5003:18;5024:26;;;:17;:26;;;;;;4942:51;;-1:-1:-1;5154:28:5;;;5150:323;;-1:-1:-1;;;;;5220:18:5;;5198:19;5220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5269:30;;;;;;:44;;;5385:30;;:17;:30;;;;;:43;;;5150:323;-1:-1:-1;5566:26:5;;;;:17;:26;;;;;;;;5559:33;;;-1:-1:-1;;;;;5609:18:5;;;;;:12;:18;;;;;:34;;;;;;;5602:41;4680:970::o;5938:1061::-;6212:10;:17;6187:22;;6212:21;;6232:1;;6212:21;:::i;:::-;6243:18;6264:24;;;:15;:24;;;;;;6632:10;:26;;6187:46;;-1:-1:-1;6264:24:5;;6187:46;;6632:26;;;;;;:::i;:::-;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6773:28;;;:15;:28;;;;;;;:41;;;6942:24;;;;;6935:31;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;-1:-1:-1;;;;;3621:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3490:217:5:o;9079:427:2:-;-1:-1:-1;;;;;9158:16:2;;9150:61;;;;-1:-1:-1;;;9150:61:2;;20871:2:15;9150:61:2;;;20853:21:15;;;20890:18;;;20883:30;20949:34;20929:18;;;20922:62;21001:18;;9150:61:2;20843:182:15;9150:61:2;9230:16;9238:7;9230;:16::i;:::-;9229:17;9221:58;;;;-1:-1:-1;;;9221:58:2;;13390:2:15;9221:58:2;;;13372:21:15;13429:2;13409:18;;;13402:30;13468;13448:18;;;13441:58;13516:18;;9221:58:2;13362:178:15;9221:58:2;9290:45;9319:1;9323:2;9327:7;9290:20;:45::i;:::-;-1:-1:-1;;;;;9346:13:2;;;;;;:9;:13;;;;;:18;;9363:1;;9346:13;:18;;9363:1;;9346:18;:::i;:::-;;;;-1:-1:-1;;9374:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9374:21:2;-1:-1:-1;;;;;9374:21:2;;;;;;;;9411:33;;9374:16;;;9411:33;;9374:16;;9411:33;4284:153;;:::o;14:367:15:-;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:2;;159:1;156;149:12;108:2;-1:-1:-1;182:20:15;;225:18;214:30;;211:2;;;257:1;254;247:12;211:2;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:2;;;371:1;368;361:12;308:2;98:283;;;;;:::o;386:247::-;445:6;498:2;486:9;477:7;473:23;469:32;466:2;;;514:1;511;504:12;466:2;553:9;540:23;572:31;597:5;572:31;:::i;638:251::-;708:6;761:2;749:9;740:7;736:23;732:32;729:2;;;777:1;774;767:12;729:2;809:9;803:16;828:31;853:5;828:31;:::i;894:388::-;962:6;970;1023:2;1011:9;1002:7;998:23;994:32;991:2;;;1039:1;1036;1029:12;991:2;1078:9;1065:23;1097:31;1122:5;1097:31;:::i;:::-;1147:5;-1:-1:-1;1204:2:15;1189:18;;1176:32;1217:33;1176:32;1217:33;:::i;:::-;1269:7;1259:17;;;981:301;;;;;:::o;1287:456::-;1364:6;1372;1380;1433:2;1421:9;1412:7;1408:23;1404:32;1401:2;;;1449:1;1446;1439:12;1401:2;1488:9;1475:23;1507:31;1532:5;1507:31;:::i;:::-;1557:5;-1:-1:-1;1614:2:15;1599:18;;1586:32;1627:33;1586:32;1627:33;:::i;:::-;1391:352;;1679:7;;-1:-1:-1;;;1733:2:15;1718:18;;;;1705:32;;1391:352::o;1748:1016::-;1843:6;1851;1859;1867;1920:3;1908:9;1899:7;1895:23;1891:33;1888:2;;;1937:1;1934;1927:12;1888:2;1976:9;1963:23;1995:31;2020:5;1995:31;:::i;:::-;2045:5;-1:-1:-1;2102:2:15;2087:18;;2074:32;2115:33;2074:32;2115:33;:::i;:::-;2167:7;-1:-1:-1;2221:2:15;2206:18;;2193:32;;-1:-1:-1;2276:2:15;2261:18;;2248:32;2303:18;2292:30;;2289:2;;;2335:1;2332;2325:12;2289:2;2358:22;;2411:4;2403:13;;2399:27;-1:-1:-1;2389:2:15;;2440:1;2437;2430:12;2389:2;2476;2463:16;2501:48;2517:31;2545:2;2517:31;:::i;:::-;2501:48;:::i;:::-;2572:2;2565:5;2558:17;2612:7;2607:2;2602;2598;2594:11;2590:20;2587:33;2584:2;;;2633:1;2630;2623:12;2584:2;2688;2683;2679;2675:11;2670:2;2663:5;2659:14;2646:45;2732:1;2727:2;2722;2715:5;2711:14;2707:23;2700:34;2753:5;2743:15;;;;;1878:886;;;;;;;:::o;2769:572::-;2864:6;2872;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:2;;;2949:1;2946;2939:12;2901:2;2988:9;2975:23;3007:31;3032:5;3007:31;:::i;:::-;3057:5;-1:-1:-1;3113:2:15;3098:18;;3085:32;3140:18;3129:30;;3126:2;;;3172:1;3169;3162:12;3126:2;3211:70;3273:7;3264:6;3253:9;3249:22;3211:70;:::i;:::-;2891:450;;3300:8;;-1:-1:-1;3185:96:15;;-1:-1:-1;;;;2891:450:15:o;3346:416::-;3411:6;3419;3472:2;3460:9;3451:7;3447:23;3443:32;3440:2;;;3488:1;3485;3478:12;3440:2;3527:9;3514:23;3546:31;3571:5;3546:31;:::i;:::-;3596:5;-1:-1:-1;3653:2:15;3638:18;;3625:32;3695:15;;3688:23;3676:36;;3666:2;;3726:1;3723;3716:12;3767:315;3835:6;3843;3896:2;3884:9;3875:7;3871:23;3867:32;3864:2;;;3912:1;3909;3902:12;3864:2;3951:9;3938:23;3970:31;3995:5;3970:31;:::i;:::-;4020:5;4072:2;4057:18;;;;4044:32;;-1:-1:-1;;;3854:228:15:o;4087:773::-;4209:6;4217;4225;4233;4286:2;4274:9;4265:7;4261:23;4257:32;4254:2;;;4302:1;4299;4292:12;4254:2;4342:9;4329:23;4371:18;4412:2;4404:6;4401:14;4398:2;;;4428:1;4425;4418:12;4398:2;4467:70;4529:7;4520:6;4509:9;4505:22;4467:70;:::i;:::-;4556:8;;-1:-1:-1;4441:96:15;-1:-1:-1;4644:2:15;4629:18;;4616:32;;-1:-1:-1;4660:16:15;;;4657:2;;;4689:1;4686;4679:12;4657:2;;4728:72;4792:7;4781:8;4770:9;4766:24;4728:72;:::i;:::-;4244:616;;;;-1:-1:-1;4819:8:15;-1:-1:-1;;;;4244:616:15:o;5643:180::-;5702:6;5755:2;5743:9;5734:7;5730:23;5726:32;5723:2;;;5771:1;5768;5761:12;5723:2;-1:-1:-1;5794:23:15;;5713:110;-1:-1:-1;5713:110:15:o;5828:245::-;5886:6;5939:2;5927:9;5918:7;5914:23;5910:32;5907:2;;;5955:1;5952;5945:12;5907:2;5994:9;5981:23;6013:30;6037:5;6013:30;:::i;6078:249::-;6147:6;6200:2;6188:9;6179:7;6175:23;6171:32;6168:2;;;6216:1;6213;6206:12;6168:2;6248:9;6242:16;6267:30;6291:5;6267:30;:::i;6332:635::-;6412:6;6465:2;6453:9;6444:7;6440:23;6436:32;6433:2;;;6481:1;6478;6471:12;6433:2;6514:9;6508:16;6547:18;6539:6;6536:30;6533:2;;;6579:1;6576;6569:12;6533:2;6602:22;;6655:4;6647:13;;6643:27;-1:-1:-1;6633:2:15;;6684:1;6681;6674:12;6633:2;6713;6707:9;6738:48;6754:31;6782:2;6754:31;:::i;6738:48::-;6809:2;6802:5;6795:17;6849:7;6844:2;6839;6835;6831:11;6827:20;6824:33;6821:2;;;6870:1;6867;6860:12;6821:2;6883:54;6934:2;6929;6922:5;6918:14;6913:2;6909;6905:11;6883:54;:::i;:::-;6956:5;6423:544;-1:-1:-1;;;;;6423:544:15:o;7157:184::-;7227:6;7280:2;7268:9;7259:7;7255:23;7251:32;7248:2;;;7296:1;7293;7286:12;7248:2;-1:-1:-1;7319:16:15;;7238:103;-1:-1:-1;7238:103:15:o;7346:505::-;7441:6;7449;7457;7510:2;7498:9;7489:7;7485:23;7481:32;7478:2;;;7526:1;7523;7516:12;7478:2;7562:9;7549:23;7539:33;;7623:2;7612:9;7608:18;7595:32;7650:18;7642:6;7639:30;7636:2;;;7682:1;7679;7672:12;7856:248;7924:6;7932;7985:2;7973:9;7964:7;7960:23;7956:32;7953:2;;;8001:1;7998;7991:12;7953:2;-1:-1:-1;;8024:23:15;;;8094:2;8079:18;;;8066:32;;-1:-1:-1;7943:161:15:o;8109:337::-;8175:6;8183;8236:2;8224:9;8215:7;8211:23;8207:32;8204:2;;;8252:1;8249;8242:12;8204:2;8288:9;8275:23;8265:33;;8348:2;8337:9;8333:18;8320:32;8392:4;8385:5;8381:16;8374:5;8371:27;8361:2;;8412:1;8409;8402:12;8451:257;8492:3;8530:5;8524:12;8557:6;8552:3;8545:19;8573:63;8629:6;8622:4;8617:3;8613:14;8606:4;8599:5;8595:16;8573:63;:::i;:::-;8690:2;8669:15;-1:-1:-1;;8665:29:15;8656:39;;;;8697:4;8652:50;;8500:208;-1:-1:-1;;8500:208:15:o;9365:488::-;-1:-1:-1;;;;;9634:15:15;;;9616:34;;9686:15;;9681:2;9666:18;;9659:43;9733:2;9718:18;;9711:34;;;9781:3;9776:2;9761:18;;9754:31;;;9559:4;;9802:45;;9827:19;;9819:6;9802:45;:::i;:::-;9794:53;9568:285;-1:-1:-1;;;;;;9568:285:15:o;10616:219::-;10765:2;10754:9;10747:21;10728:4;10785:44;10825:2;10814:9;10810:18;10802:6;10785:44;:::i;11610:414::-;11812:2;11794:21;;;11851:2;11831:18;;;11824:30;11890:34;11885:2;11870:18;;11863:62;-1:-1:-1;;;11956:2:15;11941:18;;11934:48;12014:3;11999:19;;11784:240::o;19968:338::-;20170:2;20152:21;;;20209:2;20189:18;;;20182:30;-1:-1:-1;;;20243:2:15;20228:18;;20221:44;20297:2;20282:18;;20142:164::o;22502:356::-;22704:2;22686:21;;;22723:18;;;22716:30;22782:34;22777:2;22762:18;;22755:62;22849:2;22834:18;;22676:182::o;24778:413::-;24980:2;24962:21;;;25019:2;24999:18;;;24992:30;25058:34;25053:2;25038:18;;25031:62;-1:-1:-1;;;25124:2:15;25109:18;;25102:47;25181:3;25166:19;;24952:239::o;25945:399::-;26147:2;26129:21;;;26186:2;26166:18;;;26159:30;26225:34;26220:2;26205:18;;26198:62;-1:-1:-1;;;26291:2:15;26276:18;;26269:33;26334:3;26319:19;;26119:225::o;27392:355::-;27594:2;27576:21;;;27633:2;27613:18;;;27606:30;27672:33;27667:2;27652:18;;27645:61;27738:2;27723:18;;27566:181::o;28825:275::-;28896:2;28890:9;28961:2;28942:13;;-1:-1:-1;;28938:27:15;28926:40;;28996:18;28981:34;;29017:22;;;28978:62;28975:2;;;29043:18;;:::i;:::-;29079:2;29072:22;28870:230;;-1:-1:-1;28870:230:15:o;29105:186::-;29153:4;29186:18;29178:6;29175:30;29172:2;;;29208:18;;:::i;:::-;-1:-1:-1;29274:2:15;29253:15;-1:-1:-1;;29249:29:15;29280:4;29245:40;;29162:129::o;29296:128::-;29336:3;29367:1;29363:6;29360:1;29357:13;29354:2;;;29373:18;;:::i;:::-;-1:-1:-1;29409:9:15;;29344:80::o;29429:120::-;29469:1;29495;29485:2;;29500:18;;:::i;:::-;-1:-1:-1;29534:9:15;;29475:74::o;29554:168::-;29594:7;29660:1;29656;29652:6;29648:14;29645:1;29642:21;29637:1;29630:9;29623:17;29619:45;29616:2;;;29667:18;;:::i;:::-;-1:-1:-1;29707:9:15;;29606:116::o;29727:125::-;29767:4;29795:1;29792;29789:8;29786:2;;;29800:18;;:::i;:::-;-1:-1:-1;29837:9:15;;29776:76::o;29857:258::-;29929:1;29939:113;29953:6;29950:1;29947:13;29939:113;;;30029:11;;;30023:18;30010:11;;;30003:39;29975:2;29968:10;29939:113;;;30070:6;30067:1;30064:13;30061:2;;;-1:-1:-1;;30105:1:15;30087:16;;30080:27;29910:205::o;30120:136::-;30159:3;30187:5;30177:2;;30196:18;;:::i;:::-;-1:-1:-1;;;30232:18:15;;30167:89::o;30261:380::-;30340:1;30336:12;;;;30383;;;30404:2;;30458:4;30450:6;30446:17;30436:27;;30404:2;30511;30503:6;30500:14;30480:18;30477:38;30474:2;;;30557:10;30552:3;30548:20;30545:1;30538:31;30592:4;30589:1;30582:15;30620:4;30617:1;30610:15;30474:2;;30316:325;;;:::o;30646:135::-;30685:3;-1:-1:-1;;30706:17:15;;30703:2;;;30726:18;;:::i;:::-;-1:-1:-1;30773:1:15;30762:13;;30693:88::o;30786:112::-;30818:1;30844;30834:2;;30849:18;;:::i;:::-;-1:-1:-1;30883:9:15;;30824:74::o;30903:127::-;30964:10;30959:3;30955:20;30952:1;30945:31;30995:4;30992:1;30985:15;31019:4;31016:1;31009:15;31035:127;31096:10;31091:3;31087:20;31084:1;31077:31;31127:4;31124:1;31117:15;31151:4;31148:1;31141:15;31167:127;31228:10;31223:3;31219:20;31216:1;31209:31;31259:4;31256:1;31249:15;31283:4;31280:1;31273:15;31299:127;31360:10;31355:3;31351:20;31348:1;31341:31;31391:4;31388:1;31381:15;31415:4;31412:1;31405:15;31431:127;31492:10;31487:3;31483:20;31480:1;31473:31;31523:4;31520:1;31513:15;31547:4;31544:1;31537:15;31563:131;-1:-1:-1;;;;;31638:31:15;;31628:42;;31618:2;;31684:1;31681;31674:12;31699:131;-1:-1:-1;;;;;;31773:32:15;;31763:43;;31753:2;;31820:1;31817;31810:12

Swarm Source

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