ETH Price: $3,481.47 (+2.16%)
Gas: 7 Gwei

Token

c0ntraband (BCE)
 

Overview

Max Total Supply

157 BCE

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
slums.eth
Balance
1 BCE
0xF5A6bD45240cD607A3673492B66C2A7675b8a030
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
c0ntraband

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 18: c0ntraband.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ECDSA.sol";
import "./EIP712.sol";
import "./Payment.sol";

contract c0ntraband is ERC721A, EIP712, Payment, Ownable {  
    using Strings for uint256;
    string public _baseURIextended;

    //signature
    string private constant SINGING_DOMAIN = "BCE";
    string private constant SIGNATURE_VERSION = "1";

    //settings
  	uint256 public maxSupply = 4207;
	bool public presaleStatus = false;
    bool public publicStatus = false;
	uint256 private price = 0.0369 ether;
	uint256 private maxMintPerTxPresale = 10;
    uint256 private maxMintPerWalletPresale = 10;
	uint256 private maxMintPerTxPublic= 10; 
    
    //shares
	address[] private addressList = [
	0x656B48B53aAE8Ffa968992aE274deBDB63Ab81cE,
	0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5
	];

	uint[] private shareList = [
	80,
	20
	];

	//mappings
    mapping(address => uint256) private mintCountMapPresale;
    mapping(address => uint256) public allowedMintCountMapPresale;
	mapping(address => bool) private allowed;
	
	constructor(
        	string memory _name,
			string memory _symbol,
			string memory _uri
			    ) 
   			ERC721A(_name, _symbol) 
	  		EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) 
   			Payment(addressList, shareList)
			   {
		    setBaseURI(_uri); 
   		 }

 	function mintPresale(uint256 _tokenAmount, string memory name, bytes memory signature) public payable {
		uint256 s = totalSupply();
        require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
	    require(presaleStatus,"Presale sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= maxSupply, "Mint less");
		require(_tokenAmount <= maxMintPerTxPresale);
	    require(msg.value >= price * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountPresale(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
       _safeMint(msg.sender, _tokenAmount);
	   updateMintCountPresale(msg.sender, _tokenAmount);
	 }

 	function mintAllowlist(uint256 _tokenAmount) public payable {
  	    uint256 s = totalSupply();
        require(allowed[msg.sender],"Address is not on the presale"); //check presale list
	    require(presaleStatus,"Presale sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= maxSupply, "Mint less");
		require(_tokenAmount <= maxMintPerTxPresale);
	    require(msg.value >= price * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountPresale(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
       _safeMint(msg.sender, _tokenAmount);
	   updateMintCountPresale(msg.sender, _tokenAmount);
    }


 	function mintPublic(uint256 _tokenAmount) public payable {
		uint256 s = totalSupply();
	    require(publicStatus,"Public sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(_tokenAmount <= maxMintPerTxPublic);
		require( s + _tokenAmount <= maxSupply, "Mint less");
	    require(msg.value >= price * _tokenAmount, "ETH input is wrong");
		require(tx.origin == msg.sender);  //stop contract buying
       _safeMint(msg.sender, _tokenAmount);
    }

    // admin minting
	function reserve(uint256 _tokenAmount, address addr) public onlyOwner {
  	    uint256 s = totalSupply();
	    require(s + _tokenAmount <= maxSupply, "Mint less");
            _safeMint(addr, _tokenAmount);
    }

	function updateMintCountPresale(address minter, uint256 count) private {
    mintCountMapPresale[minter] += count;
    }

    function allowedMintCountPresale(address minter) public view returns (uint256) {
    return maxMintPerWalletPresale - mintCountMapPresale[minter];
    }

    //price switch
	function setPrice(uint256 _newPrice) public onlyOwner {
		price = _newPrice;
	}

    //onoff switch
	function setPresale(bool _status) public onlyOwner {
		presaleStatus = _status;
	}
	function setPublic(bool _status) public onlyOwner {
		publicStatus = _status;
	}

	//write metadata
    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseURIextended = baseURI_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }

	function setAllowed(address[] calldata contracts) public onlyOwner {
        for (uint256 i; i < contracts.length; i++) {
            allowed[contracts[i]] = true;
        }
    }

    function checkAllowed(address addr) public view returns (bool) {
      return allowed[addr];
    }

	function check(string memory name, bytes memory signature) public view returns (address) {
        return _verify( name, signature);
    }

    function _verify(string memory name, bytes memory signature) internal view returns (address) {
        bytes32 digest = _hash(name);
        return ECDSA.recover(digest, signature);
    }

    function _hash(string memory name) internal view returns (bytes32) {
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("Web3Struct(string name)"),
            keccak256(bytes(name))
        )));
    }

	//max switches
	function setMaxPerWalletPresale(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWalletPresale = _newMaxMintAmount;
	}
	function setMaxPerTxPresale(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxPresale = _newMaxAmount;
	}
	function setMaxPerTxPublic(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxPublic= _newMaxAmount;
	}

    function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 4 of 18: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 18: EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 6 of 18: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 18: ERC721.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }     
    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");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	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"
        );
    }
	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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }
	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;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 8 of 18: ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 9 of 18: Guard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier noRentry() {
        // 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 10 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 11 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

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

File 13 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 14 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 15 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"_baseURIextended","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedMintCountMapPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"check","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintAllowlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"contracts","type":"address[]"}],"name":"setAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61106f600e55600f805461ffff191690556683185ac0364000601055600a6011819055601281905560135561018060405273656b48b53aae8ffa968992ae274debdb63ab81ce61014090815273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b561016052620000749060149060026200068e565b506040805180820190915260508152601460208201526200009a906015906002620006f8565b50348015620000a857600080fd5b5060405162004a0b38038062004a0b833981016040819052620000cb916200089c565b60148054806020026020016040519081016040528092919081815260200182805480156200012357602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000104575b505050505060158054806020026020016040519081016040528092919081815260200182805480156200017657602002820191906000526020600020905b81548152602001906001019080831162000161575b50505050506040518060400160405280600381526020016242434560e81b815250604051806040016040528060018152602001603160f81b81525086868160019080519060200190620001cb9291906200073b565b508051620001e19060029060208401906200073b565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c09485019091528151919096012090529290925261012052508051825114620002e55760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003385760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002dc565b60005b8251811015620003a4576200038f8382815181106200035e576200035e6200092d565b60200260200101518383815181106200037b576200037b6200092d565b6020026020010151620003d560201b60201c565b806200039b8162000959565b9150506200033b565b505050620003c1620003bb620005c360201b60201c565b620005c7565b620003cc8162000619565b505050620009cf565b6001600160a01b038216620004425760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002dc565b60008111620004945760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002dc565b6001600160a01b03821660009081526009602052604090205415620005105760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002dc565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b03841690811790915560009081526009602052604090208190556007546200057a90829062000977565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c546001600160a01b03163314620006755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002dc565b80516200068a90600d9060208401906200073b565b5050565b828054828255906000526020600020908101928215620006e6579160200282015b82811115620006e657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006af565b50620006f4929150620007b8565b5090565b828054828255906000526020600020908101928215620006e6579160200282015b82811115620006e6578251829060ff1690559160200191906001019062000719565b828054620007499062000992565b90600052602060002090601f0160209004810192826200076d5760008555620006e6565b82601f106200078857805160ff1916838001178555620006e6565b82800160010185558215620006e6579182015b82811115620006e65782518255916020019190600101906200079b565b5b80821115620006f45760008155600101620007b9565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620007f757600080fd5b81516001600160401b0380821115620008145762000814620007cf565b604051601f8301601f19908116603f011681019082821181831017156200083f576200083f620007cf565b816040528381526020925086838588010111156200085c57600080fd5b600091505b8382101562000880578582018301518183018401529082019062000861565b83821115620008925760008385830101525b9695505050505050565b600080600060608486031215620008b257600080fd5b83516001600160401b0380821115620008ca57600080fd5b620008d887838801620007e5565b94506020860151915080821115620008ef57600080fd5b620008fd87838801620007e5565b935060408601519150808211156200091457600080fd5b506200092386828701620007e5565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000970576200097062000943565b5060010190565b600082198211156200098d576200098d62000943565b500190565b600181811c90821680620009a757607f821691505b60208210811415620009c957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051613fec62000a1f6000396000613590015260006135df015260006135ba015260006135130152600061353d015260006135670152613fec6000f3fe6080604052600436106103015760003560e01c806389ebb2731161018f578063c54e73e3116100e1578063e985e9c51161008a578063f452472e11610064578063f452472e1461092d578063f852a6da1461094d578063f91798b11461096d57600080fd5b8063e985e9c5146108a4578063efd0cbf9146108fa578063f2fde38b1461090d57600080fd5b8063d5abeb01116100bb578063d5abeb0114610859578063e33b7de31461086f578063e5aa7c2e1461088457600080fd5b8063c54e73e3146107d6578063c87b56dd146107f6578063ce7c2ac21461081657600080fd5b80639852595c11610143578063b88d4fde1161011d578063b88d4fde1461075d578063bbbd2d701461077d578063bd472b5f146107c357600080fd5b80639852595c146106e0578063a22cb46514610723578063acfb23551461074357600080fd5b80638da5cb5b116101745780638da5cb5b1461068057806391b7f5ed146106ab57806395d89b41146106cb57600080fd5b806389ebb273146106405780638b83209b1461066057600080fd5b80632f745c591161025357806355f804b3116101fc578063662d4801116101d6578063662d4801146105de57806370a082311461060b578063715018a61461062b57600080fd5b806355f804b31461057e5780635cbcec4e1461059e5780636352211e146105be57600080fd5b806342842e0e1161022d57806342842e0e1461051e57806348808c101461053e5780634f6ccce71461055e57600080fd5b80632f745c59146104e15780633a98ef39146105015780633ccfd60b1461051657600080fd5b8063095ea7b3116102b5578063191655871161028f578063191655871461048e5780631c390da3146104ae57806323b872dd146104c157600080fd5b8063095ea7b31461042f5780630fab6da81461044f57806318160ddd1461046f57600080fd5b806306fdde03116102e657806306fdde03146103b3578063081812fc146103d55780630928fc221461041a57600080fd5b806301ffc9a71461035c57806303339bcb1461039157600080fd5b36610357577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561036857600080fd5b5061037c610377366004613855565b61098c565b60405190151581526020015b60405180910390f35b34801561039d57600080fd5b506103b16103ac366004613894565b610abd565b005b3480156103bf57600080fd5b506103c8610b96565b604051610388919061393a565b3480156103e157600080fd5b506103f56103f036600461394d565b610c28565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610388565b34801561042657600080fd5b506103c8610cd0565b34801561043b57600080fd5b506103b161044a366004613966565b610d5e565b34801561045b57600080fd5b506103b161046a36600461394d565b610eb3565b34801561047b57600080fd5b506000545b604051908152602001610388565b34801561049a57600080fd5b506103b16104a9366004613992565b610f1f565b6103b16104bc36600461394d565b61115a565b3480156104cd57600080fd5b506103b16104dc3660046139af565b6113a0565b3480156104ed57600080fd5b506104806104fc366004613966565b6113ab565b34801561050d57600080fd5b50600754610480565b6103b161156a565b34801561052a57600080fd5b506103b16105393660046139af565b611629565b34801561054a57600080fd5b506103f5610559366004613aca565b611644565b34801561056a57600080fd5b5061048061057936600461394d565b611657565b34801561058a57600080fd5b506103b1610599366004613b2e565b6116d3565b3480156105aa57600080fd5b506103b16105b9366004613b78565b61174d565b3480156105ca57600080fd5b506103f56105d936600461394d565b6117eb565b3480156105ea57600080fd5b506104806105f9366004613992565b60176020526000908152604090205481565b34801561061757600080fd5b50610480610626366004613992565b6117fd565b34801561063757600080fd5b506103b16118c3565b34801561064c57600080fd5b5061048061065b366004613992565b611936565b34801561066c57600080fd5b506103f561067b36600461394d565b611969565b34801561068c57600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff166103f5565b3480156106b757600080fd5b506103b16106c636600461394d565b6119a6565b3480156106d757600080fd5b506103c8611a12565b3480156106ec57600080fd5b506104806106fb366004613992565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561072f57600080fd5b506103b161073e366004613b93565b611a21565b34801561074f57600080fd5b50600f5461037c9060ff1681565b34801561076957600080fd5b506103b1610778366004613bc8565b611b1e565b34801561078957600080fd5b5061037c610798366004613992565b73ffffffffffffffffffffffffffffffffffffffff1660009081526018602052604090205460ff1690565b6103b16107d1366004613c34565b611bad565b3480156107e257600080fd5b506103b16107f1366004613b78565b611dff565b34801561080257600080fd5b506103c861081136600461394d565b611e97565b34801561082257600080fd5b50610480610831366004613992565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561086557600080fd5b50610480600e5481565b34801561087b57600080fd5b50600854610480565b34801561089057600080fd5b506103b161089f366004613ca1565b611f72565b3480156108b057600080fd5b5061037c6108bf366004613d16565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103b161090836600461394d565b612076565b34801561091957600080fd5b506103b1610928366004613992565b6121fd565b34801561093957600080fd5b506103b161094836600461394d565b6122f6565b34801561095957600080fd5b506103b161096836600461394d565b612362565b34801561097957600080fd5b50600f5461037c90610100900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a1f57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a6b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610ab757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610b295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600054600e54610b398483613d73565b1115610b875760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b610b9182846123ce565b505050565b606060018054610ba590613d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd190613d8b565b8015610c1e5780601f10610bf357610100808354040283529160200191610c1e565b820191906000526020600020905b815481529060010190602001808311610c0157829003601f168201915b5050505050905090565b6000610c35826000541190565b610ca75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610b20565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610cdd90613d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0990613d8b565b8015610d565780601f10610d2b57610100808354040283529160200191610d56565b820191906000526020600020905b815481529060010190602001808311610d3957829003601f168201915b505050505081565b6000610d69826117eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e365750610e3681336108bf565b610ea85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b20565b610b918383836123e8565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610f1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601255565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260096020526040902054610fb75760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610b20565b600060085447610fc79190613d73565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020908152604080832054600754600990935290832054939450919261100b9085613ddf565b6110159190613e4b565b61101f9190613e5f565b9050806110945760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a60205260409020546110c5908290613d73565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a60205260409020556008546110f9908290613d73565b6008556111068382612469565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60008054338252601860205260409091205460ff166111bb5760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206973206e6f74206f6e207468652070726573616c650000006044820152606401610b20565b600f5460ff1661120d5760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610b20565b6000821161125d5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610b20565b600e5461126a8383613d73565b11156112b85760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b6011548211156112c757600080fd5b816010546112d59190613ddf565b3410156113245760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610b20565b8161132e33611936565b101561137c5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610b20565b32331461138857600080fd5b61139233836123ce565b61139c338361258f565b5050565b610b918383836125cd565b60006113b6836117fd565b821061142a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b600080549080805b838110156114fb5760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156114a357805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f257868414156114eb57509350610ab792505050565b6001909301925b50600101611432565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b20565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146115d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b604051600090339047908381818185875af1925050503d8060008114611613576040519150601f19603f3d011682016040523d82523d6000602084013e611618565b606091505b505090508061162657600080fd5b50565b610b9183838360405180602001604052806000815250611b1e565b600061165083836129ff565b9392505050565b6000805482106116cf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610b20565b5090565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461173a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b805161139c90600d906020840190613797565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146117b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60006117f682612a1f565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff82166118885760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610b20565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461192a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b6119346000612b45565b565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260166020526040812054601254610ab79190613e5f565b6000600b828154811061197e5761197e613e76565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611a0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601055565b606060028054610ba590613d8b565b73ffffffffffffffffffffffffffffffffffffffff8216331415611a875760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b20565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b298484846125cd565b611b3584848484612bbc565b611ba75760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b20565b50505050565b60005433611bbb8484611644565b73ffffffffffffffffffffffffffffffffffffffff1614611c1e5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610b20565b600f5460ff16611c705760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610b20565b60008411611cc05760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610b20565b600e54611ccd8583613d73565b1115611d1b5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b601154841115611d2a57600080fd5b83601054611d389190613ddf565b341015611d875760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610b20565b83611d9133611936565b1015611ddf5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610b20565b323314611deb57600080fd5b611df533856123ce565b611ba7338561258f565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611e665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060611ea4826000541190565b611f165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b20565b6000611f20612d92565b9050805160001415611f415760405180602001604052806000815250611650565b80611f4b84612da1565b604051602001611f5c929190613ea5565b6040516020818303038152906040529392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611fd95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b60005b81811015610b9157600160186000858585818110611ffc57611ffc613e76565b90506020020160208101906120119190613992565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061206e81613ed4565b915050611fdc565b600054600f54610100900460ff166120d05760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b20565b600082116121205760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610b20565b60135482111561212f57600080fd5b600e5461213c8383613d73565b111561218a5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b816010546121989190613ddf565b3410156121e75760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610b20565b3233146121f357600080fd5b61139c33836123ce565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146122645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b73ffffffffffffffffffffffffffffffffffffffff81166122ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b20565b61162681612b45565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461235d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601355565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146123c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601155565b61139c828260405180602001604052806000815250612ed3565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156124b95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b20565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612513576040519150601f19603f3d011682016040523d82523d6000602084013e612518565b606091505b5050905080610b915760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260166020526040812080548392906125c4908490613d73565b90915550505050565b60006125d882612a1f565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061263657503361261e84610c28565b73ffffffffffffffffffffffffffffffffffffffff16145b806126485750815161264890336108bf565b9050806126bd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b20565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127625760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff84166127eb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b20565b6127fb60008484600001516123e8565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff160217905590860180835291205490911661299b57612918816000541190565b1561299b578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612a0b84612ee0565b9050612a178184612f43565b949350505050565b6040805180820190915260008082526020820152612a3e826000541190565b612ab05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b20565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612b1d579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612ab2565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612d87576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612c33903390899088908890600401613f0d565b6020604051808303816000875af1925050508015612c8c575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612c8991810190613f56565b60015b612d3c573d808015612cba576040519150601f19603f3d011682016040523d82523d6000602084013e612cbf565b606091505b508051612d345760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b20565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612a17565b506001949350505050565b6060600d8054610ba590613d8b565b606081612de157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612e0b5780612df581613ed4565b9150612e049050600a83613e4b565b9150612de5565b60008167ffffffffffffffff811115612e2657612e266139f0565b6040519080825280601f01601f191660200182016040528015612e50576020820181803683370190505b5090505b8415612a1757612e65600183613e5f565b9150612e72600a86613f73565b612e7d906030613d73565b60f81b818381518110612e9257612e92613e76565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612ecc600a86613e4b565b9450612e54565b610b918383836001612f67565b6000610ab77f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001612f28929190918252602082015260400190565b6040516020818303038152906040528051906020012061322f565b6000806000612f528585613298565b91509150612f5f81613308565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff8516612ff35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b836130665760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561322657604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561321a576131a86000888488612bbc565b61321a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b20565b60019182019101613148565b506000556129f8565b6000610ab761323c6134f9565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156132cf5760208301516040840151606085015160001a6132c38782858561362d565b94509450505050613301565b8251604014156132f957602083015160408401516132ee868383613745565b935093505050613301565b506000905060025b9250929050565b600081600481111561331c5761331c613f87565b14156133255750565b600181600481111561333957613339613f87565b14156133875760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b20565b600281600481111561339b5761339b613f87565b14156133e95760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b20565b60038160048111156133fd576133fd613f87565b14156134715760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b600481600481111561348557613485613f87565b14156116265760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b60003073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614801561355f57507f000000000000000000000000000000000000000000000000000000000000000046145b1561358957507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613664575060009050600361373c565b8460ff16601b1415801561367c57508460ff16601c14155b1561368d575060009050600461373c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156136e1573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166137355760006001925092505061373c565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161377b60ff86901c601b613d73565b90506137898782888561362d565b935093505050935093915050565b8280546137a390613d8b565b90600052602060002090601f0160209004810192826137c5576000855561380b565b82601f106137de57805160ff191683800117855561380b565b8280016001018555821561380b579182015b8281111561380b5782518255916020019190600101906137f0565b506116cf9291505b808211156116cf5760008155600101613813565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461162657600080fd5b60006020828403121561386757600080fd5b813561165081613827565b73ffffffffffffffffffffffffffffffffffffffff8116811461162657600080fd5b600080604083850312156138a757600080fd5b8235915060208301356138b981613872565b809150509250929050565b60005b838110156138df5781810151838201526020016138c7565b83811115611ba75750506000910152565b600081518084526139088160208601602086016138c4565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061165060208301846138f0565b60006020828403121561395f57600080fd5b5035919050565b6000806040838503121561397957600080fd5b823561398481613872565b946020939093013593505050565b6000602082840312156139a457600080fd5b813561165081613872565b6000806000606084860312156139c457600080fd5b83356139cf81613872565b925060208401356139df81613872565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112613a3057600080fd5b813567ffffffffffffffff80821115613a4b57613a4b6139f0565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613a9157613a916139f0565b81604052838152866020858801011115613aaa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215613add57600080fd5b823567ffffffffffffffff80821115613af557600080fd5b613b0186838701613a1f565b93506020850135915080821115613b1757600080fd5b50613b2485828601613a1f565b9150509250929050565b600060208284031215613b4057600080fd5b813567ffffffffffffffff811115613b5757600080fd5b612a1784828501613a1f565b80358015158114613b7357600080fd5b919050565b600060208284031215613b8a57600080fd5b61165082613b63565b60008060408385031215613ba657600080fd5b8235613bb181613872565b9150613bbf60208401613b63565b90509250929050565b60008060008060808587031215613bde57600080fd5b8435613be981613872565b93506020850135613bf981613872565b925060408501359150606085013567ffffffffffffffff811115613c1c57600080fd5b613c2887828801613a1f565b91505092959194509250565b600080600060608486031215613c4957600080fd5b83359250602084013567ffffffffffffffff80821115613c6857600080fd5b613c7487838801613a1f565b93506040860135915080821115613c8a57600080fd5b50613c9786828701613a1f565b9150509250925092565b60008060208385031215613cb457600080fd5b823567ffffffffffffffff80821115613ccc57600080fd5b818501915085601f830112613ce057600080fd5b813581811115613cef57600080fd5b8660208260051b8501011115613d0457600080fd5b60209290920196919550909350505050565b60008060408385031215613d2957600080fd5b8235613d3481613872565b915060208301356138b981613872565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613d8657613d86613d44565b500190565b600181811c90821680613d9f57607f821691505b60208210811415613dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1757613e17613d44565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613e5a57613e5a613e1c565b500490565b600082821015613e7157613e71613d44565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351613eb78184602088016138c4565b835190830190613ecb8183602088016138c4565b01949350505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0657613f06613d44565b5060010190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613f4c60808301846138f0565b9695505050505050565b600060208284031215613f6857600080fd5b815161165081613827565b600082613f8257613f82613e1c565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220db662b2106618063c8d38f96a2617b3013302ac82dae7c9735f333c94e49266664736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a63306e74726162616e6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000342434500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5944384a66746d44457a7375353757587768646d336d51373848713754674270444c7541674158384368314e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106103015760003560e01c806389ebb2731161018f578063c54e73e3116100e1578063e985e9c51161008a578063f452472e11610064578063f452472e1461092d578063f852a6da1461094d578063f91798b11461096d57600080fd5b8063e985e9c5146108a4578063efd0cbf9146108fa578063f2fde38b1461090d57600080fd5b8063d5abeb01116100bb578063d5abeb0114610859578063e33b7de31461086f578063e5aa7c2e1461088457600080fd5b8063c54e73e3146107d6578063c87b56dd146107f6578063ce7c2ac21461081657600080fd5b80639852595c11610143578063b88d4fde1161011d578063b88d4fde1461075d578063bbbd2d701461077d578063bd472b5f146107c357600080fd5b80639852595c146106e0578063a22cb46514610723578063acfb23551461074357600080fd5b80638da5cb5b116101745780638da5cb5b1461068057806391b7f5ed146106ab57806395d89b41146106cb57600080fd5b806389ebb273146106405780638b83209b1461066057600080fd5b80632f745c591161025357806355f804b3116101fc578063662d4801116101d6578063662d4801146105de57806370a082311461060b578063715018a61461062b57600080fd5b806355f804b31461057e5780635cbcec4e1461059e5780636352211e146105be57600080fd5b806342842e0e1161022d57806342842e0e1461051e57806348808c101461053e5780634f6ccce71461055e57600080fd5b80632f745c59146104e15780633a98ef39146105015780633ccfd60b1461051657600080fd5b8063095ea7b3116102b5578063191655871161028f578063191655871461048e5780631c390da3146104ae57806323b872dd146104c157600080fd5b8063095ea7b31461042f5780630fab6da81461044f57806318160ddd1461046f57600080fd5b806306fdde03116102e657806306fdde03146103b3578063081812fc146103d55780630928fc221461041a57600080fd5b806301ffc9a71461035c57806303339bcb1461039157600080fd5b36610357577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561036857600080fd5b5061037c610377366004613855565b61098c565b60405190151581526020015b60405180910390f35b34801561039d57600080fd5b506103b16103ac366004613894565b610abd565b005b3480156103bf57600080fd5b506103c8610b96565b604051610388919061393a565b3480156103e157600080fd5b506103f56103f036600461394d565b610c28565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610388565b34801561042657600080fd5b506103c8610cd0565b34801561043b57600080fd5b506103b161044a366004613966565b610d5e565b34801561045b57600080fd5b506103b161046a36600461394d565b610eb3565b34801561047b57600080fd5b506000545b604051908152602001610388565b34801561049a57600080fd5b506103b16104a9366004613992565b610f1f565b6103b16104bc36600461394d565b61115a565b3480156104cd57600080fd5b506103b16104dc3660046139af565b6113a0565b3480156104ed57600080fd5b506104806104fc366004613966565b6113ab565b34801561050d57600080fd5b50600754610480565b6103b161156a565b34801561052a57600080fd5b506103b16105393660046139af565b611629565b34801561054a57600080fd5b506103f5610559366004613aca565b611644565b34801561056a57600080fd5b5061048061057936600461394d565b611657565b34801561058a57600080fd5b506103b1610599366004613b2e565b6116d3565b3480156105aa57600080fd5b506103b16105b9366004613b78565b61174d565b3480156105ca57600080fd5b506103f56105d936600461394d565b6117eb565b3480156105ea57600080fd5b506104806105f9366004613992565b60176020526000908152604090205481565b34801561061757600080fd5b50610480610626366004613992565b6117fd565b34801561063757600080fd5b506103b16118c3565b34801561064c57600080fd5b5061048061065b366004613992565b611936565b34801561066c57600080fd5b506103f561067b36600461394d565b611969565b34801561068c57600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff166103f5565b3480156106b757600080fd5b506103b16106c636600461394d565b6119a6565b3480156106d757600080fd5b506103c8611a12565b3480156106ec57600080fd5b506104806106fb366004613992565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561072f57600080fd5b506103b161073e366004613b93565b611a21565b34801561074f57600080fd5b50600f5461037c9060ff1681565b34801561076957600080fd5b506103b1610778366004613bc8565b611b1e565b34801561078957600080fd5b5061037c610798366004613992565b73ffffffffffffffffffffffffffffffffffffffff1660009081526018602052604090205460ff1690565b6103b16107d1366004613c34565b611bad565b3480156107e257600080fd5b506103b16107f1366004613b78565b611dff565b34801561080257600080fd5b506103c861081136600461394d565b611e97565b34801561082257600080fd5b50610480610831366004613992565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561086557600080fd5b50610480600e5481565b34801561087b57600080fd5b50600854610480565b34801561089057600080fd5b506103b161089f366004613ca1565b611f72565b3480156108b057600080fd5b5061037c6108bf366004613d16565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103b161090836600461394d565b612076565b34801561091957600080fd5b506103b1610928366004613992565b6121fd565b34801561093957600080fd5b506103b161094836600461394d565b6122f6565b34801561095957600080fd5b506103b161096836600461394d565b612362565b34801561097957600080fd5b50600f5461037c90610100900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a1f57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a6b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610ab757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610b295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600054600e54610b398483613d73565b1115610b875760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b610b9182846123ce565b505050565b606060018054610ba590613d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd190613d8b565b8015610c1e5780601f10610bf357610100808354040283529160200191610c1e565b820191906000526020600020905b815481529060010190602001808311610c0157829003601f168201915b5050505050905090565b6000610c35826000541190565b610ca75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610b20565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610cdd90613d8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0990613d8b565b8015610d565780601f10610d2b57610100808354040283529160200191610d56565b820191906000526020600020905b815481529060010190602001808311610d3957829003601f168201915b505050505081565b6000610d69826117eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e365750610e3681336108bf565b610ea85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b20565b610b918383836123e8565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610f1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601255565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260096020526040902054610fb75760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610b20565b600060085447610fc79190613d73565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020908152604080832054600754600990935290832054939450919261100b9085613ddf565b6110159190613e4b565b61101f9190613e5f565b9050806110945760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a60205260409020546110c5908290613d73565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a60205260409020556008546110f9908290613d73565b6008556111068382612469565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60008054338252601860205260409091205460ff166111bb5760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206973206e6f74206f6e207468652070726573616c650000006044820152606401610b20565b600f5460ff1661120d5760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610b20565b6000821161125d5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610b20565b600e5461126a8383613d73565b11156112b85760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b6011548211156112c757600080fd5b816010546112d59190613ddf565b3410156113245760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610b20565b8161132e33611936565b101561137c5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610b20565b32331461138857600080fd5b61139233836123ce565b61139c338361258f565b5050565b610b918383836125cd565b60006113b6836117fd565b821061142a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b600080549080805b838110156114fb5760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156114a357805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f257868414156114eb57509350610ab792505050565b6001909301925b50600101611432565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b20565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146115d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b604051600090339047908381818185875af1925050503d8060008114611613576040519150601f19603f3d011682016040523d82523d6000602084013e611618565b606091505b505090508061162657600080fd5b50565b610b9183838360405180602001604052806000815250611b1e565b600061165083836129ff565b9392505050565b6000805482106116cf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610b20565b5090565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461173a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b805161139c90600d906020840190613797565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146117b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60006117f682612a1f565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff82166118885760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610b20565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461192a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b6119346000612b45565b565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260166020526040812054601254610ab79190613e5f565b6000600b828154811061197e5761197e613e76565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611a0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601055565b606060028054610ba590613d8b565b73ffffffffffffffffffffffffffffffffffffffff8216331415611a875760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b20565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b298484846125cd565b611b3584848484612bbc565b611ba75760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b20565b50505050565b60005433611bbb8484611644565b73ffffffffffffffffffffffffffffffffffffffff1614611c1e5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610b20565b600f5460ff16611c705760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610b20565b60008411611cc05760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610b20565b600e54611ccd8583613d73565b1115611d1b5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b601154841115611d2a57600080fd5b83601054611d389190613ddf565b341015611d875760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610b20565b83611d9133611936565b1015611ddf5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610b20565b323314611deb57600080fd5b611df533856123ce565b611ba7338561258f565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611e665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060611ea4826000541190565b611f165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b20565b6000611f20612d92565b9050805160001415611f415760405180602001604052806000815250611650565b80611f4b84612da1565b604051602001611f5c929190613ea5565b6040516020818303038152906040529392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611fd95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b60005b81811015610b9157600160186000858585818110611ffc57611ffc613e76565b90506020020160208101906120119190613992565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061206e81613ed4565b915050611fdc565b600054600f54610100900460ff166120d05760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b20565b600082116121205760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610b20565b60135482111561212f57600080fd5b600e5461213c8383613d73565b111561218a5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610b20565b816010546121989190613ddf565b3410156121e75760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610b20565b3233146121f357600080fd5b61139c33836123ce565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146122645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b73ffffffffffffffffffffffffffffffffffffffff81166122ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b20565b61162681612b45565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461235d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601355565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146123c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b20565b601155565b61139c828260405180602001604052806000815250612ed3565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156124b95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b20565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612513576040519150601f19603f3d011682016040523d82523d6000602084013e612518565b606091505b5050905080610b915760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260166020526040812080548392906125c4908490613d73565b90915550505050565b60006125d882612a1f565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061263657503361261e84610c28565b73ffffffffffffffffffffffffffffffffffffffff16145b806126485750815161264890336108bf565b9050806126bd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b20565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127625760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff84166127eb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b20565b6127fb60008484600001516123e8565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff160217905590860180835291205490911661299b57612918816000541190565b1561299b578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612a0b84612ee0565b9050612a178184612f43565b949350505050565b6040805180820190915260008082526020820152612a3e826000541190565b612ab05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b20565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612b1d579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612ab2565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612d87576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612c33903390899088908890600401613f0d565b6020604051808303816000875af1925050508015612c8c575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612c8991810190613f56565b60015b612d3c573d808015612cba576040519150601f19603f3d011682016040523d82523d6000602084013e612cbf565b606091505b508051612d345760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b20565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612a17565b506001949350505050565b6060600d8054610ba590613d8b565b606081612de157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612e0b5780612df581613ed4565b9150612e049050600a83613e4b565b9150612de5565b60008167ffffffffffffffff811115612e2657612e266139f0565b6040519080825280601f01601f191660200182016040528015612e50576020820181803683370190505b5090505b8415612a1757612e65600183613e5f565b9150612e72600a86613f73565b612e7d906030613d73565b60f81b818381518110612e9257612e92613e76565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612ecc600a86613e4b565b9450612e54565b610b918383836001612f67565b6000610ab77f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001612f28929190918252602082015260400190565b6040516020818303038152906040528051906020012061322f565b6000806000612f528585613298565b91509150612f5f81613308565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff8516612ff35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b836130665760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610b20565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561322657604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561321a576131a86000888488612bbc565b61321a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b20565b60019182019101613148565b506000556129f8565b6000610ab761323c6134f9565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156132cf5760208301516040840151606085015160001a6132c38782858561362d565b94509450505050613301565b8251604014156132f957602083015160408401516132ee868383613745565b935093505050613301565b506000905060025b9250929050565b600081600481111561331c5761331c613f87565b14156133255750565b600181600481111561333957613339613f87565b14156133875760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b20565b600281600481111561339b5761339b613f87565b14156133e95760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b20565b60038160048111156133fd576133fd613f87565b14156134715760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b600481600481111561348557613485613f87565b14156116265760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610b20565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004f1bcb051b641c79ff9ac6455510d37b35561ecb1614801561355f57507f000000000000000000000000000000000000000000000000000000000000000146145b1561358957507f717e7884d4af0a8a8d95a7c36d8716653aff1d37045ea402eb85b8095b17ed6990565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f84868611d3cce27c874003b02ab26858afe10e8a5de6c24befe3cccb4faba9f4828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613664575060009050600361373c565b8460ff16601b1415801561367c57508460ff16601c14155b1561368d575060009050600461373c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156136e1573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166137355760006001925092505061373c565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161377b60ff86901c601b613d73565b90506137898782888561362d565b935093505050935093915050565b8280546137a390613d8b565b90600052602060002090601f0160209004810192826137c5576000855561380b565b82601f106137de57805160ff191683800117855561380b565b8280016001018555821561380b579182015b8281111561380b5782518255916020019190600101906137f0565b506116cf9291505b808211156116cf5760008155600101613813565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461162657600080fd5b60006020828403121561386757600080fd5b813561165081613827565b73ffffffffffffffffffffffffffffffffffffffff8116811461162657600080fd5b600080604083850312156138a757600080fd5b8235915060208301356138b981613872565b809150509250929050565b60005b838110156138df5781810151838201526020016138c7565b83811115611ba75750506000910152565b600081518084526139088160208601602086016138c4565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061165060208301846138f0565b60006020828403121561395f57600080fd5b5035919050565b6000806040838503121561397957600080fd5b823561398481613872565b946020939093013593505050565b6000602082840312156139a457600080fd5b813561165081613872565b6000806000606084860312156139c457600080fd5b83356139cf81613872565b925060208401356139df81613872565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112613a3057600080fd5b813567ffffffffffffffff80821115613a4b57613a4b6139f0565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613a9157613a916139f0565b81604052838152866020858801011115613aaa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215613add57600080fd5b823567ffffffffffffffff80821115613af557600080fd5b613b0186838701613a1f565b93506020850135915080821115613b1757600080fd5b50613b2485828601613a1f565b9150509250929050565b600060208284031215613b4057600080fd5b813567ffffffffffffffff811115613b5757600080fd5b612a1784828501613a1f565b80358015158114613b7357600080fd5b919050565b600060208284031215613b8a57600080fd5b61165082613b63565b60008060408385031215613ba657600080fd5b8235613bb181613872565b9150613bbf60208401613b63565b90509250929050565b60008060008060808587031215613bde57600080fd5b8435613be981613872565b93506020850135613bf981613872565b925060408501359150606085013567ffffffffffffffff811115613c1c57600080fd5b613c2887828801613a1f565b91505092959194509250565b600080600060608486031215613c4957600080fd5b83359250602084013567ffffffffffffffff80821115613c6857600080fd5b613c7487838801613a1f565b93506040860135915080821115613c8a57600080fd5b50613c9786828701613a1f565b9150509250925092565b60008060208385031215613cb457600080fd5b823567ffffffffffffffff80821115613ccc57600080fd5b818501915085601f830112613ce057600080fd5b813581811115613cef57600080fd5b8660208260051b8501011115613d0457600080fd5b60209290920196919550909350505050565b60008060408385031215613d2957600080fd5b8235613d3481613872565b915060208301356138b981613872565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613d8657613d86613d44565b500190565b600181811c90821680613d9f57607f821691505b60208210811415613dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1757613e17613d44565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613e5a57613e5a613e1c565b500490565b600082821015613e7157613e71613d44565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351613eb78184602088016138c4565b835190830190613ecb8183602088016138c4565b01949350505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0657613f06613d44565b5060010190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613f4c60808301846138f0565b9695505050505050565b600060208284031215613f6857600080fd5b815161165081613827565b600082613f8257613f82613e1c565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220db662b2106618063c8d38f96a2617b3013302ac82dae7c9735f333c94e49266664736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a63306e74726162616e6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000342434500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5944384a66746d44457a7375353757587768646d336d51373848713754674270444c7541674158384368314e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): c0ntraband
Arg [1] : _symbol (string): BCE
Arg [2] : _uri (string): ipfs://QmYD8JftmDEzsu57WXwhdm3mQ78Hq7TgBpDLuAgAX8Ch1N/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 63306e74726162616e6400000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4243450000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5944384a66746d44457a7375353757587768646d336d51
Arg [9] : 373848713754674270444c7541674158384368314e2f00000000000000000000


Deployed Bytecode Sourcemap

184:5774:17:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:14;682:10:1;2627:40:14;;;218:42:18;206:55;;;188:74;;2657:9:14;293:2:18;278:18;;271:34;161:18;2627:40:14;;;;;;;184:5774:17;;;;;3282:372:6;;;;;;;;;;-1:-1:-1;3282:372:6;;;;;:::i;:::-;;:::i;:::-;;;913:14:18;;906:22;888:41;;876:2;861:18;3282:372:6;;;;;;;;3476:216:17;;;;;;;;;;-1:-1:-1;3476:216:17;;;;;:::i;:::-;;:::i;:::-;;5168:100:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6730:214::-;;;;;;;;;;-1:-1:-1;6730:214:6;;;;;:::i;:::-;;:::i;:::-;;;2590:42:18;2578:55;;;2560:74;;2548:2;2533:18;6730:214:6;2414:226:18;282:30:17;;;;;;;;;;;;;:::i;6251:413:6:-;;;;;;;;;;-1:-1:-1;6251:413:6;;;;;:::i;:::-;;:::i;5440:128:17:-;;;;;;;;;;-1:-1:-1;5440:128:17;;;;;:::i;:::-;;:::i;1539:100:6:-;;;;;;;;;;-1:-1:-1;1592:7:6;1619:12;1539:100;;;3111:25:18;;;3099:2;3084:18;1539:100:6;2965:177:18;3791:600:14;;;;;;;;;;-1:-1:-1;3791:600:14;;;;;:::i;:::-;;:::i;2207:739:17:-;;;;;;:::i;:::-;;:::i;7606:162:6:-;;;;;;;;;;-1:-1:-1;7606:162:6;;;;;:::i;:::-;;:::i;2203:1007::-;;;;;;;;;;-1:-1:-1;2203:1007:6;;;;;:::i;:::-;;:::i;2752:89:14:-;;;;;;;;;;-1:-1:-1;2822:12:14;;2752:89;;5803:152:17;;;:::i;7839:177:6:-;;;;;;;;;;-1:-1:-1;7839:177:6;;;;;:::i;:::-;;:::i;4841:140:17:-;;;;;;;;;;-1:-1:-1;4841:140:17;;;;;:::i;:::-;;:::i;1716:187:6:-;;;;;;;;;;-1:-1:-1;1716:187:6;;;;;:::i;:::-;;:::i;4308:107:17:-;;;;;;;;;;-1:-1:-1;4308:107:17;;;;;:::i;:::-;;:::i;4199:82::-;;;;;;;;;;-1:-1:-1;4199:82:17;;;;;:::i;:::-;;:::i;4977:124:6:-;;;;;;;;;;-1:-1:-1;4977:124:6;;;;;:::i;:::-;;:::i;1032:61:17:-;;;;;;;;;;-1:-1:-1;1032:61:17;;;;;:::i;:::-;;;;;;;;;;;;;;3718:221:6;;;;;;;;;;-1:-1:-1;3718:221:6;;;;;:::i;:::-;;:::i;1648:94:13:-;;;;;;;;;;;;;:::i;3827:154:17:-;;;;;;;;;;-1:-1:-1;3827:154:17;;;;;:::i;:::-;;:::i;3499:98:14:-;;;;;;;;;;-1:-1:-1;3499:98:14;;;;;:::i;:::-;;:::i;997:87:13:-;;;;;;;;;;-1:-1:-1;1070:6:13;;;;997:87;;4006:81:17;;;;;;;;;;-1:-1:-1;4006:81:17;;;;;:::i;:::-;;:::i;5337:104:6:-;;;;;;;;;;;;;:::i;3306:107:14:-;;;;;;;;;;-1:-1:-1;3306:107:14;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;7016:288:6;;;;;;;;;;-1:-1:-1;7016:288:6;;;;;:::i;:::-;;:::i;497:33:17:-;;;;;;;;;;-1:-1:-1;497:33:17;;;;;;;;8087:355:6;;;;;;;;;;-1:-1:-1;8087:355:6;;;;;:::i;:::-;;:::i;4736:100:17:-;;;;;;;;;;-1:-1:-1;4736:100:17;;;;;:::i;:::-;4815:13;;4793:4;4815:13;;;:7;:13;;;;;;;;;4736:100;1418:783;;;;;;:::i;:::-;;:::i;4112:84::-;;;;;;;;;;-1:-1:-1;4112:84:17;;;;;:::i;:::-;;:::i;5512:335:6:-;;;;;;;;;;-1:-1:-1;5512:335:6;;;;;:::i;:::-;;:::i;3109:103:14:-;;;;;;;;;;-1:-1:-1;3109:103:14;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;462:31:17;;;;;;;;;;;;;;;;2930:93:14;;;;;;;;;;-1:-1:-1;3002:14:14;;2930:93;;4545:183:17;;;;;;;;;;-1:-1:-1;4545:183:17;;;;;:::i;:::-;;:::i;7375:164:6:-;;;;;;;;;;-1:-1:-1;7375:164:6;;;;;:::i;:::-;7496:25;;;;7472:4;7496:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7375:164;2954:495:17;;;;;;:::i;:::-;;:::i;1897:192:13:-;;;;;;;;;;-1:-1:-1;1897:192:13;;;;;:::i;:::-;;:::i;5686:109:17:-;;;;;;;;;;-1:-1:-1;5686:109:17;;;;;:::i;:::-;;:::i;5571:112::-;;;;;;;;;;-1:-1:-1;5571:112:17;;;;;:::i;:::-;;:::i;537:32::-;;;;;;;;;;-1:-1:-1;537:32:17;;;;;;;;;;;3282:372:6;3384:4;3421:40;;;3436:25;3421:40;;:105;;-1:-1:-1;3478:48:6;;;3493:33;3478:48;3421:105;:172;;;-1:-1:-1;3543:50:6;;;3558:35;3543:50;3421:172;:225;;;-1:-1:-1;886:25:4;871:40;;;;3610:36:6;3401:245;3282:372;-1:-1:-1;;3282:372:6:o;3476:216:17:-;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;;;;;;;;;3556:9:17::1;1619:12:6::0;3617:9:17::1;::::0;3597:16:::1;3601:12:::0;1619::6;3597:16:17::1;:::i;:::-;:29;;3589:51;;;::::0;-1:-1:-1;;;3589:51:17;;9820:2:18;3589:51:17::1;::::0;::::1;9802:21:18::0;9859:1;9839:18;;;9832:29;9897:11;9877:18;;;9870:39;9926:18;;3589:51:17::1;9618:332:18::0;3589:51:17::1;3655:29;3665:4;3671:12;3655:9;:29::i;:::-;3546:146;3476:216:::0;;:::o;5168:100:6:-;5222:13;5255:5;5248:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5168:100;:::o;6730:214::-;6798:7;6826:16;6834:7;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;6826:16;6818:74;;;;-1:-1:-1;;;6818:74:6;;10599:2:18;6818:74:6;;;10581:21:18;10638:2;10618:18;;;10611:30;10677:34;10657:18;;;10650:62;10748:15;10728:18;;;10721:43;10781:19;;6818:74:6;10397:409:18;6818:74:6;-1:-1:-1;6912:24:6;;;;:15;:24;;;;;;;;;6730:214::o;282:30:17:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6251:413:6:-;6324:13;6340:24;6356:7;6340:15;:24::i;:::-;6324:40;;6389:5;6383:11;;:2;:11;;;;6375:58;;;;-1:-1:-1;;;6375:58:6;;11013:2:18;6375:58:6;;;10995:21:18;11052:2;11032:18;;;11025:30;11091:34;11071:18;;;11064:62;11162:4;11142:18;;;11135:32;11184:19;;6375:58:6;10811:398:18;6375:58:6;682:10:1;6468:21:6;;;;;:62;;-1:-1:-1;6493:37:6;6510:5;682:10:1;7375:164:6;:::i;6493:37::-;6446:169;;;;-1:-1:-1;;;6446:169:6;;11416:2:18;6446:169:6;;;11398:21:18;11455:2;11435:18;;;11428:30;11494:34;11474:18;;;11467:62;11565:27;11545:18;;;11538:55;11610:19;;6446:169:6;11214:421:18;6446:169:6;6628:28;6637:2;6641:7;6650:5;6628:8;:28::i;5440:128:17:-;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;5520:23:17::1;:43:::0;5440:128::o;3791:600:14:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:14;;11842:2:18;3858:71:14;;;11824:21:18;11881:2;11861:18;;;11854:30;11920:34;11900:18;;;11893:62;11991:8;11971:18;;;11964:36;12017:19;;3858:71:14;11640:402:18;3858:71:14;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:14;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:14;4111:68;;;;-1:-1:-1;;;4111:68:14;;12926:2:18;4111:68:14;;;12908:21:18;12965:2;12945:18;;;12938:30;13004:34;12984:18;;;12977:62;13075:13;13055:18;;;13048:41;13106:19;;4111:68:14;12724:407:18;4111:68:14;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:18;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:14;;161:18:18;4351:33:14;;;;;;;3848:543;;3791:600;:::o;2207:739:17:-;2277:9;1619:12:6;;2329:10:17;2321:19;;:7;:19;;;;;;;;;2313:60;;;;-1:-1:-1;;;2313:60:17;;13648:2:18;2313:60:17;;;13630:21:18;13687:2;13667:18;;;13660:30;13726:31;13706:18;;;13699:59;13775:18;;2313:60:17;13446:353:18;2313:60:17;2410:13;;;;2402:51;;;;-1:-1:-1;;;2402:51:17;;14006:2:18;2402:51:17;;;13988:21:18;14045:2;14025:18;;;14018:30;14084:28;14064:18;;;14057:56;14130:18;;2402:51:17;13804:350:18;2402:51:17;2487:1;2472:12;:16;2464:46;;;;-1:-1:-1;;;2464:46:17;;14361:2:18;2464:46:17;;;14343:21:18;14400:2;14380:18;;;14373:30;14439:18;14419;;;14412:46;14475:18;;2464:46:17;14159:340:18;2464:46:17;2546:9;;2526:16;2530:12;2526:1;:16;:::i;:::-;:29;;2518:51;;;;-1:-1:-1;;;2518:51:17;;9820:2:18;2518:51:17;;;9802:21:18;9859:1;9839:18;;;9832:29;9897:11;9877:18;;;9870:39;9926:18;;2518:51:17;9618:332:18;2518:51:17;2598:19;;2582:12;:35;;2574:44;;;;;;2655:12;2647:5;;:20;;;;:::i;:::-;2634:9;:33;;2626:64;;;;-1:-1:-1;;;2626:64:17;;14706:2:18;2626:64:17;;;14688:21:18;14745:2;14725:18;;;14718:30;14784:20;14764:18;;;14757:48;14822:18;;2626:64:17;14504:342:18;2626:64:17;2742:12;2703:35;2727:10;2703:23;:35::i;:::-;:51;;2695:82;;;;-1:-1:-1;;;2695:82:17;;15053:2:18;2695:82:17;;;15035:21:18;15092:2;15072:18;;;15065:30;15131:21;15111:18;;;15104:49;15170:18;;2695:82:17;14851:343:18;2695:82:17;2790:9;2803:10;2790:23;2782:32;;;;;;2848:35;2858:10;2870:12;2848:9;:35::i;:::-;2890:48;2913:10;2925:12;2890:22;:48::i;:::-;2267:679;2207:739;:::o;7606:162:6:-;7732:28;7742:4;7748:2;7752:7;7732:9;:28::i;2203:1007::-;2292:7;2328:16;2338:5;2328:9;:16::i;:::-;2320:5;:24;2312:71;;;;-1:-1:-1;;;2312:71:6;;15401:2:18;2312:71:6;;;15383:21:18;15440:2;15420:18;;;15413:30;15479:34;15459:18;;;15452:62;15550:4;15530:18;;;15523:32;15572:19;;2312:71:6;15199:398:18;2312:71:6;2394:22;1619:12;;;2394:22;;2657:466;2677:14;2673:1;:18;2657:466;;;2717:31;2751:14;;;:11;:14;;;;;;;;;2717:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;2788:28;2784:111;;2861:14;;;-1:-1:-1;2784:111:6;2938:5;2917:26;;:17;:26;;;2913:195;;;2987:5;2972:11;:20;2968:85;;;-1:-1:-1;3028:1:6;-1:-1:-1;3021:8:6;;-1:-1:-1;;;3021:8:6;2968:85;3075:13;;;;;2913:195;-1:-1:-1;2693:3:6;;2657:466;;;-1:-1:-1;3146:56:6;;-1:-1:-1;;;3146:56:6;;15804:2:18;3146:56:6;;;15786:21:18;15843:2;15823:18;;;15816:30;15882:34;15862:18;;;15855:62;15953:16;15933:18;;;15926:44;15987:19;;3146:56:6;15602:410:18;5803:152:17;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;5871:58:17::1;::::0;5853:12:::1;::::0;5879:10:::1;::::0;5903:21:::1;::::0;5853:12;5871:58;5853:12;5871:58;5903:21;5879:10;5871:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5852:77;;;5942:7;5934:16;;;::::0;::::1;;5848:107;5803:152::o:0;7839:177:6:-;7969:39;7986:4;7992:2;7996:7;7969:39;;;;;;;;;;;;:16;:39::i;4841:140:17:-;4921:7;4948:25;4957:4;4963:9;4948:7;:25::i;:::-;4941:32;4841:140;-1:-1:-1;;;4841:140:17:o;1716:187:6:-;1783:7;1619:12;;1811:5;:21;1803:69;;;;-1:-1:-1;;;1803:69:6;;16429:2:18;1803:69:6;;;16411:21:18;16468:2;16448:18;;;16441:30;16507:34;16487:18;;;16480:62;16578:5;16558:18;;;16551:33;16601:19;;1803:69:6;16227:399:18;1803:69:6;-1:-1:-1;1890:5:6;1716:187::o;4308:107:17:-;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;4380:27:17;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;4199:82::-:0;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;4254:12:17::1;:22:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;4199:82::o;4977:124:6:-;5041:7;5068:20;5080:7;5068:11;:20::i;:::-;:25;;4977:124;-1:-1:-1;;4977:124:6:o;3718:221::-;3782:7;3810:19;;;3802:75;;;;-1:-1:-1;;;3802:75:6;;16833:2:18;3802:75:6;;;16815:21:18;16872:2;16852:18;;;16845:30;16911:34;16891:18;;;16884:62;16982:13;16962:18;;;16955:41;17013:19;;3802:75:6;16631:407:18;3802:75:6;-1:-1:-1;3903:19:6;;;;;;:12;:19;;;;;:27;;;;3718:221::o;1648:94:13:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;3827:154:17:-;3946:27;;;3897:7;3946:27;;;:19;:27;;;;;;3920:23;;:53;;3946:27;3920:53;:::i;3499:98:14:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:14:o;4006:81:17:-;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;4065:5:17::1;:17:::0;4006:81::o;5337:104:6:-;5393:13;5426:7;5419:14;;;;;:::i;7016:288::-;7111:24;;;682:10:1;7111:24:6;;7103:63;;;;-1:-1:-1;;;7103:63:6;;17434:2:18;7103:63:6;;;17416:21:18;17473:2;17453:18;;;17446:30;17512:28;17492:18;;;17485:56;17558:18;;7103:63:6;17232:350:18;7103:63:6;682:10:1;7179:32:6;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;7248:48;;888:41:18;;;7179:42:6;;682:10:1;7248:48:6;;861:18:18;7248:48:6;;;;;;;7016:288;;:::o;8087:355::-;8246:28;8256:4;8262:2;8266:7;8246:9;:28::i;:::-;8307:48;8330:4;8336:2;8340:7;8349:5;8307:22;:48::i;:::-;8285:149;;;;-1:-1:-1;;;8285:149:6;;17789:2:18;8285:149:6;;;17771:21:18;17828:2;17808:18;;;17801:30;17867:34;17847:18;;;17840:62;17938:21;17918:18;;;17911:49;17977:19;;8285:149:6;17587:415:18;8285:149:6;8087:355;;;;:::o;1418:783:17:-;1525:9;1619:12:6;1595:10:17;1569:22;1575:4;1581:9;1569:5;:22::i;:::-;:36;;;1561:66;;;;-1:-1:-1;;;1561:66:17;;18209:2:18;1561:66:17;;;18191:21:18;18248:2;18228:18;;;18221:30;18287:19;18267:18;;;18260:47;18324:18;;1561:66:17;18007:341:18;1561:66:17;1667:13;;;;1659:51;;;;-1:-1:-1;;;1659:51:17;;14006:2:18;1659:51:17;;;13988:21:18;14045:2;14025:18;;;14018:30;14084:28;14064:18;;;14057:56;14130:18;;1659:51:17;13804:350:18;1659:51:17;1744:1;1729:12;:16;1721:46;;;;-1:-1:-1;;;1721:46:17;;14361:2:18;1721:46:17;;;14343:21:18;14400:2;14380:18;;;14373:30;14439:18;14419;;;14412:46;14475:18;;1721:46:17;14159:340:18;1721:46:17;1803:9;;1783:16;1787:12;1783:1;:16;:::i;:::-;:29;;1775:51;;;;-1:-1:-1;;;1775:51:17;;9820:2:18;1775:51:17;;;9802:21:18;9859:1;9839:18;;;9832:29;9897:11;9877:18;;;9870:39;9926:18;;1775:51:17;9618:332:18;1775:51:17;1855:19;;1839:12;:35;;1831:44;;;;;;1912:12;1904:5;;:20;;;;:::i;:::-;1891:9;:33;;1883:64;;;;-1:-1:-1;;;1883:64:17;;14706:2:18;1883:64:17;;;14688:21:18;14745:2;14725:18;;;14718:30;14784:20;14764:18;;;14757:48;14822:18;;1883:64:17;14504:342:18;1883:64:17;1999:12;1960:35;1984:10;1960:23;:35::i;:::-;:51;;1952:82;;;;-1:-1:-1;;;1952:82:17;;15053:2:18;1952:82:17;;;15035:21:18;15092:2;15072:18;;;15065:30;15131:21;15111:18;;;15104:49;15170:18;;1952:82:17;14851:343:18;1952:82:17;2047:9;2060:10;2047:23;2039:32;;;;;;2105:35;2115:10;2127:12;2105:9;:35::i;:::-;2147:48;2170:10;2182:12;2147:22;:48::i;4112:84::-;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;4168:13:17::1;:23:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;4112:84::o;5512:335:6:-;5585:13;5619:16;5627:7;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;5619:16;5611:76;;;;-1:-1:-1;;;5611:76:6;;18555:2:18;5611:76:6;;;18537:21:18;18594:2;18574:18;;;18567:30;18633:34;18613:18;;;18606:62;18704:17;18684:18;;;18677:45;18739:19;;5611:76:6;18353:411:18;5611:76:6;5700:21;5724:10;:8;:10::i;:::-;5700:34;;5758:7;5752:21;5777:1;5752:26;;:87;;;;;;;;;;;;;;;;;5805:7;5814:18;:7;:16;:18::i;:::-;5788:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5745:94;5512:335;-1:-1:-1;;;5512:335:6:o;4545:183:17:-;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;4628:9:17::1;4623:98;4639:20:::0;;::::1;4623:98;;;4705:4;4681:7;:21;4689:9;;4699:1;4689:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4681:21;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4681:21:17;:28;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;4661:3;::::1;::::0;::::1;:::i;:::-;;;;4623:98;;2954:495:::0;3016:9;1619:12:6;3057::17;;;;;;;3049:49;;;;-1:-1:-1;;;3049:49:17;;19646:2:18;3049:49:17;;;19628:21:18;19685:2;19665:18;;;19658:30;19724:27;19704:18;;;19697:55;19769:18;;3049:49:17;19444:349:18;3049:49:17;3132:1;3117:12;:16;3109:46;;;;-1:-1:-1;;;3109:46:17;;14361:2:18;3109:46:17;;;14343:21:18;14400:2;14380:18;;;14373:30;14439:18;14419;;;14412:46;14475:18;;3109:46:17;14159:340:18;3109:46:17;3187:18;;3171:12;:34;;3163:43;;;;;;3240:9;;3220:16;3224:12;3220:1;:16;:::i;:::-;:29;;3211:52;;;;-1:-1:-1;;;3211:52:17;;9820:2:18;3211:52:17;;;9802:21:18;9859:1;9839:18;;;9832:29;9897:11;9877:18;;;9870:39;9926:18;;3211:52:17;9618:332:18;3211:52:17;3300:12;3292:5;;:20;;;;:::i;:::-;3279:9;:33;;3271:64;;;;-1:-1:-1;;;3271:64:17;;14706:2:18;3271:64:17;;;14688:21:18;14745:2;14725:18;;;14718:30;14784:20;14764:18;;;14757:48;14822:18;;3271:64:17;14504:342:18;3271:64:17;3348:9;3361:10;3348:23;3340:32;;;;;;3406:35;3416:10;3428:12;3406:9;:35::i;1897:192:13:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;1986:22:::1;::::0;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:13;;20000:2:18;1978:73:13::1;::::0;::::1;19982:21:18::0;20039:2;20019:18;;;20012:30;20078:34;20058:18;;;20051:62;20149:8;20129:18;;;20122:36;20175:19;;1978:73:13::1;19798:402:18::0;1978:73:13::1;2062:19;2072:8;2062:9;:19::i;5686:109:17:-:0;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;5757:18:17::1;:33:::0;5686:109::o;5571:112::-;1070:6:13;;1217:23;1070:6;682:10:1;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;9137:2:18;1209:68:13;;;9119:21:18;;;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9267:18;;1209:68:13;8935:356:18;1209:68:13;5643:19:17::1;:35:::0;5571:112::o;8816:104:6:-;8885:27;8895:2;8899:8;8885:27;;;;;;;;;;;;:9;:27::i;13617:196::-;13732:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;13777:28;;13732:24;;13777:28;;;;;;;13617:196;;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;20407:2:18;2147:73:0;;;20389:21:18;20446:2;20426:18;;;20419:30;20485:31;20465:18;;;20458:59;20534:18;;2147:73:0;20205:353:18;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;20765:2:18;2296:78:0;;;20747:21:18;20804:2;20784:18;;;20777:30;20843:34;20823:18;;;20816:62;20914:28;20894:18;;;20887:56;20960:19;;2296:78:0;20563:422:18;3697:122:17;3775:27;;;;;;;:19;:27;;;;;:36;;3806:5;;3775:27;:36;;3806:5;;3775:36;:::i;:::-;;;;-1:-1:-1;;;;3697:122:17:o;11497:2002:6:-;11612:35;11650:20;11662:7;11650:11;:20::i;:::-;11725:18;;11612:58;;-1:-1:-1;11683:22:6;;11709:34;;682:10:1;11709:34:6;;;:87;;;-1:-1:-1;682:10:1;11760:20:6;11772:7;11760:11;:20::i;:::-;:36;;;11709:87;:154;;;-1:-1:-1;11830:18:6;;11813:50;;682:10:1;7375:164:6;:::i;11813:50::-;11683:181;;11885:17;11877:80;;;;-1:-1:-1;;;11877:80:6;;21192:2:18;11877:80:6;;;21174:21:18;21231:2;21211:18;;;21204:30;21270:34;21250:18;;;21243:62;21341:20;21321:18;;;21314:48;21379:19;;11877:80:6;20990:414:18;11877:80:6;12000:4;11978:26;;:13;:18;;;:26;;;11970:77;;;;-1:-1:-1;;;11970:77:6;;21611:2:18;11970:77:6;;;21593:21:18;21650:2;21630:18;;;21623:30;21689:34;21669:18;;;21662:62;21760:8;21740:18;;;21733:36;21786:19;;11970:77:6;21409:402:18;11970:77:6;12066:16;;;12058:66;;;;-1:-1:-1;;;12058:66:6;;22018:2:18;12058:66:6;;;22000:21:18;22057:2;22037:18;;;22030:30;22096:34;22076:18;;;22069:62;22167:7;22147:18;;;22140:35;22192:19;;12058:66:6;21816:401:18;12058:66:6;12245:49;12262:1;12266:7;12275:13;:18;;;12245:8;:49::i;:::-;12590:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;12636:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;12636:29:6;;;;;;;;;;;;;12682:20;;;:11;:20;;;;;;:30;;12727:61;;;;;;12772:15;12727:61;;;;;;13062:11;;;13092:24;;;;;:29;13062:11;;13092:29;13088:295;;13160:20;13168:11;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;13160:20;13156:212;;;13237:18;;;13205:24;;;:11;:24;;;;;;;;:50;;13320:28;;;;13278:70;;;;;;;;13205:50;;;;13278:70;;;;;;;13156:212;12565:829;13430:7;13426:2;13411:27;;13420:4;13411:27;;;;;;;;;;;;13449:42;11601:1898;;11497:2002;;;:::o;4989:190:17:-;5073:7;5093:14;5110:11;5116:4;5110:5;:11::i;:::-;5093:28;;5139:32;5153:6;5161:9;5139:13;:32::i;:::-;5132:39;4989:190;-1:-1:-1;;;;4989:190:17:o;4378:537:6:-;-1:-1:-1;;;;;;;;;;;;;;;;;4481:16:6;4489:7;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;4481:16;4473:71;;;;-1:-1:-1;;;4473:71:6;;22424:2:18;4473:71:6;;;22406:21:18;22463:2;22443:18;;;22436:30;22502:34;22482:18;;;22475:62;22573:12;22553:18;;;22546:40;22603:19;;4473:71:6;22222:406:18;4473:71:6;4602:7;4582:245;4649:31;4683:17;;;:11;:17;;;;;;;;;4649:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;4723:28;4719:93;;4783:9;4378:537;-1:-1:-1;;;4378:537:6:o;4719:93::-;-1:-1:-1;4622:6:6;;4582:245;;2097:173:13;2172:6;;;;2189:17;;;;;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;14378:804:6:-;14533:4;14554:13;;;1066:20:0;1114:8;14550:625:6;;14590:72;;;;;:36;;;;;;:72;;682:10:1;;14641:4:6;;14647:7;;14656:5;;14590:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14590:72:6;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14586:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14836:13:6;;14832:273;;14879:61;;-1:-1:-1;;;14879:61:6;;17789:2:18;14879:61:6;;;17771:21:18;17828:2;17808:18;;;17801:30;17867:34;17847:18;;;17840:62;17938:21;17918:18;;;17911:49;17977:19;;14879:61:6;17587:415:18;14832:273:6;15055:6;15049:13;15040:6;15036:2;15032:15;15025:38;14586:534;14713:55;;14723:45;14713:55;;-1:-1:-1;14706:62:6;;14550:625;-1:-1:-1;15159:4:6;14378:804;;;;;;:::o;4423:117:17:-;4483:13;4516:16;4509:23;;;;;:::i;288:723:16:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:16;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:16;;-1:-1:-1;744:2:16;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:16;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:16;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:16;958:2;949:11;;:::i;:::-;;;818:154;;9283:163:6;9406:32;9412:2;9416:8;9426:5;9433:4;9406:5;:32::i;5187:231:17:-;5245:7;5272:138;5324:36;5391:4;5375:22;;;;;;5299:109;;;;;;;;24111:25:18;;;24167:2;24152:18;;24145:34;24099:2;24084:18;;23937:248;5299:109:17;;;;;;;;;;;;;5289:120;;;;;;5272:16;:138::i;4393:231:2:-;4471:7;4492:17;4511:18;4533:27;4544:4;4550:9;4533:10;:27::i;:::-;4491:69;;;;4571:18;4583:5;4571:11;:18::i;:::-;-1:-1:-1;4607:9:2;4393:231;-1:-1:-1;;;4393:231:2:o;9705:1538:6:-;9844:20;9867:12;9898:16;;;9890:62;;;;-1:-1:-1;;;9890:62:6;;24392:2:18;9890:62:6;;;24374:21:18;24431:2;24411:18;;;24404:30;24470:34;24450:18;;;24443:62;24541:3;24521:18;;;24514:31;24562:19;;9890:62:6;24190:397:18;9890:62:6;9971:13;9963:66;;;;-1:-1:-1;;;9963:66:6;;24794:2:18;9963:66:6;;;24776:21:18;24833:2;24813:18;;;24806:30;24872:34;24852:18;;;24845:62;24943:10;24923:18;;;24916:38;24971:19;;9963:66:6;24592:404:18;9963:66:6;10381:16;;;;;;;:12;:16;;;;;;;;:45;;10441:50;10381:45;;;;;;;;;;;;;;10441:50;;;;;;;;;;;;;;10508:25;;;:11;:25;;;;;:35;;10558:66;;;;;;10608:15;10558:66;;;;;;;10508:25;;10693:415;10713:8;10709:1;:12;10693:415;;;10752:38;;10777:12;;10752:38;;;;10769:1;;10752:38;;10769:1;;10752:38;10813:4;10809:249;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10842:196;;;;-1:-1:-1;;;10842:196:6;;17789:2:18;10842:196:6;;;17771:21:18;17828:2;17808:18;;;17801:30;17867:34;17847:18;;;17840:62;17938:21;17918:18;;;17911:49;17977:19;;10842:196:6;17587:415:18;10842:196:6;11078:14;;;;;10723:3;10693:415;;;-1:-1:-1;11124:12:6;:27;11175:60;8087:355;4439:167:3;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;9437:57:2;;26979:66:18;9437:57:2;;;26967:79:18;27062:11;;;27055:27;;;27098:12;;;27091:28;;;9400:7:2;;27135:12:18;;9437:57:2;;;;;;;;;;;;9427:68;;;;;;9420:75;;9307:196;;;;;2283:1308;2364:7;2373:12;2598:9;:16;2618:2;2598:22;2594:990;;;2894:4;2879:20;;2873:27;2944:4;2929:20;;2923:27;3002:4;2987:20;;2981:27;2637:9;2973:36;3045:25;3056:4;2973:36;2873:27;2923;3045:10;:25::i;:::-;3038:32;;;;;;;;;2594:990;3092:9;:16;3112:2;3092:22;3088:496;;;3367:4;3352:20;;3346:27;3418:4;3403:20;;3397:27;3460:23;3471:4;3346:27;3397;3460:10;:23::i;:::-;3453:30;;;;;;;;3088:496;-1:-1:-1;3532:1:2;;-1:-1:-1;3536:35:2;3088:496;2283:1308;;;;;:::o;554:643::-;632:20;623:5;:29;;;;;;;;:::i;:::-;;619:571;;;554:643;:::o;619:571::-;730:29;721:5;:38;;;;;;;;:::i;:::-;;717:473;;;776:34;;-1:-1:-1;;;776:34:2;;25392:2:18;776:34:2;;;25374:21:18;25431:2;25411:18;;;25404:30;25470:26;25450:18;;;25443:54;25514:18;;776:34:2;25190:348:18;717:473:2;841:35;832:5;:44;;;;;;;;:::i;:::-;;828:362;;;893:41;;-1:-1:-1;;;893:41:2;;25745:2:18;893:41:2;;;25727:21:18;25784:2;25764:18;;;25757:30;25823:33;25803:18;;;25796:61;25874:18;;893:41:2;25543:355:18;828:362:2;965:30;956:5;:39;;;;;;;;:::i;:::-;;952:238;;;1012:44;;-1:-1:-1;;;1012:44:2;;26105:2:18;1012:44:2;;;26087:21:18;26144:2;26124:18;;;26117:30;26183:34;26163:18;;;26156:62;26254:4;26234:18;;;26227:32;26276:19;;1012:44:2;25903:398:18;952:238:2;1087:30;1078:5;:39;;;;;;;;:::i;:::-;;1074:116;;;1134:44;;-1:-1:-1;;;1134:44:2;;26508:2:18;1134:44:2;;;26490:21:18;26547:2;26527:18;;;26520:30;26586:34;26566:18;;;26559:62;26657:4;26637:18;;;26630:32;26679:19;;1134:44:2;26306:398:18;3212:314:3;3265:7;3297:4;3289:29;3306:12;3289:29;;:66;;;;;3339:16;3322:13;:33;3289:66;3285:234;;;-1:-1:-1;3379:24:3;;3212:314::o;3285:234::-;-1:-1:-1;3715:73:3;;;3465:10;3715:73;;;;27820:25:18;;;;3477:12:3;27861:18:18;;;27854:34;3491:15:3;27904:18:18;;;27897:34;3759:13:3;27947:18:18;;;27940:34;3782:4:3;27990:19:18;;;;27983:84;;;;3715:73:3;;;;;;;;;;27792:19:18;;;;3715:73:3;;;3705:84;;;;;;3212:314::o;5845:1632:2:-;5976:7;;6910:66;6897:79;;6893:163;;;-1:-1:-1;7009:1:2;;-1:-1:-1;7013:30:2;6993:51;;6893:163;7070:1;:7;;7075:2;7070:7;;:18;;;;;7081:1;:7;;7086:2;7081:7;;7070:18;7066:102;;;-1:-1:-1;7121:1:2;;-1:-1:-1;7125:30:2;7105:51;;7066:102;7282:24;;;7265:14;7282:24;;;;;;;;;27385:25:18;;;27458:4;27446:17;;27426:18;;;27419:45;;;;27480:18;;;27473:34;;;27523:18;;;27516:34;;;7282:24:2;;27357:19:18;;7282:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7282:24:2;;;;;;-1:-1:-1;;7321:20:2;;;7317:103;;7374:1;7378:29;7358:50;;;;;;;7317:103;7440:6;-1:-1:-1;7448:20:2;;-1:-1:-1;5845:1632:2;;;;;;;;:::o;4887:344::-;5001:7;;5060:66;5047:80;;5001:7;5154:25;5170:3;5155:18;;;5177:2;5154:25;:::i;:::-;5138:42;;5198:25;5209:4;5215:1;5218;5221;5198:10;:25::i;:::-;5191:32;;;;;;4887:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:18;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:154::-;1026:42;1019:5;1015:54;1008:5;1005:65;995:93;;1084:1;1081;1074:12;1099:315;1167:6;1175;1228:2;1216:9;1207:7;1203:23;1199:32;1196:52;;;1244:1;1241;1234:12;1196:52;1280:9;1267:23;1257:33;;1340:2;1329:9;1325:18;1312:32;1353:31;1378:5;1353:31;:::i;:::-;1403:5;1393:15;;;1099:315;;;;;:::o;1419:258::-;1491:1;1501:113;1515:6;1512:1;1509:13;1501:113;;;1591:11;;;1585:18;1572:11;;;1565:39;1537:2;1530:10;1501:113;;;1632:6;1629:1;1626:13;1623:48;;;-1:-1:-1;;1667:1:18;1649:16;;1642:27;1419:258::o;1682:317::-;1724:3;1762:5;1756:12;1789:6;1784:3;1777:19;1805:63;1861:6;1854:4;1849:3;1845:14;1838:4;1831:5;1827:16;1805:63;:::i;:::-;1913:2;1901:15;1918:66;1897:88;1888:98;;;;1988:4;1884:109;;1682:317;-1:-1:-1;;1682:317:18:o;2004:220::-;2153:2;2142:9;2135:21;2116:4;2173:45;2214:2;2203:9;2199:18;2191:6;2173:45;:::i;2229:180::-;2288:6;2341:2;2329:9;2320:7;2316:23;2312:32;2309:52;;;2357:1;2354;2347:12;2309:52;-1:-1:-1;2380:23:18;;2229:180;-1:-1:-1;2229:180:18:o;2645:315::-;2713:6;2721;2774:2;2762:9;2753:7;2749:23;2745:32;2742:52;;;2790:1;2787;2780:12;2742:52;2829:9;2816:23;2848:31;2873:5;2848:31;:::i;:::-;2898:5;2950:2;2935:18;;;;2922:32;;-1:-1:-1;;;2645:315:18:o;3147:255::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:31;3366:5;3341:31;:::i;3407:456::-;3484:6;3492;3500;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3608:9;3595:23;3627:31;3652:5;3627:31;:::i;:::-;3677:5;-1:-1:-1;3734:2:18;3719:18;;3706:32;3747:33;3706:32;3747:33;:::i;:::-;3407:456;;3799:7;;-1:-1:-1;;;3853:2:18;3838:18;;;;3825:32;;3407:456::o;3868:184::-;3920:77;3917:1;3910:88;4017:4;4014:1;4007:15;4041:4;4038:1;4031:15;4057:778;4100:5;4153:3;4146:4;4138:6;4134:17;4130:27;4120:55;;4171:1;4168;4161:12;4120:55;4207:6;4194:20;4233:18;4270:2;4266;4263:10;4260:36;;;4276:18;;:::i;:::-;4410:2;4404:9;4472:4;4464:13;;4315:66;4460:22;;;4484:2;4456:31;4452:40;4440:53;;;4508:18;;;4528:22;;;4505:46;4502:72;;;4554:18;;:::i;:::-;4594:10;4590:2;4583:22;4629:2;4621:6;4614:18;4675:3;4668:4;4663:2;4655:6;4651:15;4647:26;4644:35;4641:55;;;4692:1;4689;4682:12;4641:55;4756:2;4749:4;4741:6;4737:17;4730:4;4722:6;4718:17;4705:54;4803:1;4796:4;4791:2;4783:6;4779:15;4775:26;4768:37;4823:6;4814:15;;;;;;4057:778;;;;:::o;4840:542::-;4927:6;4935;4988:2;4976:9;4967:7;4963:23;4959:32;4956:52;;;5004:1;5001;4994:12;4956:52;5044:9;5031:23;5073:18;5114:2;5106:6;5103:14;5100:34;;;5130:1;5127;5120:12;5100:34;5153:50;5195:7;5186:6;5175:9;5171:22;5153:50;:::i;:::-;5143:60;;5256:2;5245:9;5241:18;5228:32;5212:48;;5285:2;5275:8;5272:16;5269:36;;;5301:1;5298;5291:12;5269:36;;5324:52;5368:7;5357:8;5346:9;5342:24;5324:52;:::i;:::-;5314:62;;;4840:542;;;;;:::o;5387:322::-;5456:6;5509:2;5497:9;5488:7;5484:23;5480:32;5477:52;;;5525:1;5522;5515:12;5477:52;5565:9;5552:23;5598:18;5590:6;5587:30;5584:50;;;5630:1;5627;5620:12;5584:50;5653;5695:7;5686:6;5675:9;5671:22;5653:50;:::i;5714:160::-;5779:20;;5835:13;;5828:21;5818:32;;5808:60;;5864:1;5861;5854:12;5808:60;5714:160;;;:::o;5879:180::-;5935:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:52;;;6004:1;6001;5994:12;5956:52;6027:26;6043:9;6027:26;:::i;6316:315::-;6381:6;6389;6442:2;6430:9;6421:7;6417:23;6413:32;6410:52;;;6458:1;6455;6448:12;6410:52;6497:9;6484:23;6516:31;6541:5;6516:31;:::i;:::-;6566:5;-1:-1:-1;6590:35:18;6621:2;6606:18;;6590:35;:::i;:::-;6580:45;;6316:315;;;;;:::o;6636:666::-;6731:6;6739;6747;6755;6808:3;6796:9;6787:7;6783:23;6779:33;6776:53;;;6825:1;6822;6815:12;6776:53;6864:9;6851:23;6883:31;6908:5;6883:31;:::i;:::-;6933:5;-1:-1:-1;6990:2:18;6975:18;;6962:32;7003:33;6962:32;7003:33;:::i;:::-;7055:7;-1:-1:-1;7109:2:18;7094:18;;7081:32;;-1:-1:-1;7164:2:18;7149:18;;7136:32;7191:18;7180:30;;7177:50;;;7223:1;7220;7213:12;7177:50;7246;7288:7;7279:6;7268:9;7264:22;7246:50;:::i;:::-;7236:60;;;6636:666;;;;;;;:::o;7307:610::-;7403:6;7411;7419;7472:2;7460:9;7451:7;7447:23;7443:32;7440:52;;;7488:1;7485;7478:12;7440:52;7524:9;7511:23;7501:33;;7585:2;7574:9;7570:18;7557:32;7608:18;7649:2;7641:6;7638:14;7635:34;;;7665:1;7662;7655:12;7635:34;7688:50;7730:7;7721:6;7710:9;7706:22;7688:50;:::i;:::-;7678:60;;7791:2;7780:9;7776:18;7763:32;7747:48;;7820:2;7810:8;7807:16;7804:36;;;7836:1;7833;7826:12;7804:36;;7859:52;7903:7;7892:8;7881:9;7877:24;7859:52;:::i;:::-;7849:62;;;7307:610;;;;;:::o;7922:615::-;8008:6;8016;8069:2;8057:9;8048:7;8044:23;8040:32;8037:52;;;8085:1;8082;8075:12;8037:52;8125:9;8112:23;8154:18;8195:2;8187:6;8184:14;8181:34;;;8211:1;8208;8201:12;8181:34;8249:6;8238:9;8234:22;8224:32;;8294:7;8287:4;8283:2;8279:13;8275:27;8265:55;;8316:1;8313;8306:12;8265:55;8356:2;8343:16;8382:2;8374:6;8371:14;8368:34;;;8398:1;8395;8388:12;8368:34;8451:7;8446:2;8436:6;8433:1;8429:14;8425:2;8421:23;8417:32;8414:45;8411:65;;;8472:1;8469;8462:12;8411:65;8503:2;8495:11;;;;;8525:6;;-1:-1:-1;7922:615:18;;-1:-1:-1;;;;7922:615:18:o;8542:388::-;8610:6;8618;8671:2;8659:9;8650:7;8646:23;8642:32;8639:52;;;8687:1;8684;8677:12;8639:52;8726:9;8713:23;8745:31;8770:5;8745:31;:::i;:::-;8795:5;-1:-1:-1;8852:2:18;8837:18;;8824:32;8865:33;8824:32;8865:33;:::i;9296:184::-;9348:77;9345:1;9338:88;9445:4;9442:1;9435:15;9469:4;9466:1;9459:15;9485:128;9525:3;9556:1;9552:6;9549:1;9546:13;9543:39;;;9562:18;;:::i;:::-;-1:-1:-1;9598:9:18;;9485:128::o;9955:437::-;10034:1;10030:12;;;;10077;;;10098:61;;10152:4;10144:6;10140:17;10130:27;;10098:61;10205:2;10197:6;10194:14;10174:18;10171:38;10168:218;;;10242:77;10239:1;10232:88;10343:4;10340:1;10333:15;10371:4;10368:1;10361:15;10168:218;;9955:437;;;:::o;12047:228::-;12087:7;12213:1;12145:66;12141:74;12138:1;12135:81;12130:1;12123:9;12116:17;12112:105;12109:131;;;12220:18;;:::i;:::-;-1:-1:-1;12260:9:18;;12047:228::o;12280:184::-;12332:77;12329:1;12322:88;12429:4;12426:1;12419:15;12453:4;12450:1;12443:15;12469:120;12509:1;12535;12525:35;;12540:18;;:::i;:::-;-1:-1:-1;12574:9:18;;12469:120::o;12594:125::-;12634:4;12662:1;12659;12656:8;12653:34;;;12667:18;;:::i;:::-;-1:-1:-1;12704:9:18;;12594:125::o;17043:184::-;17095:77;17092:1;17085:88;17192:4;17189:1;17182:15;17216:4;17213:1;17206:15;18769:470;18948:3;18986:6;18980:13;19002:53;19048:6;19043:3;19036:4;19028:6;19024:17;19002:53;:::i;:::-;19118:13;;19077:16;;;;19140:57;19118:13;19077:16;19174:4;19162:17;;19140:57;:::i;:::-;19213:20;;18769:470;-1:-1:-1;;;;18769:470:18:o;19244:195::-;19283:3;19314:66;19307:5;19304:77;19301:103;;;19384:18;;:::i;:::-;-1:-1:-1;19431:1:18;19420:13;;19244:195::o;23049:512::-;23243:4;23272:42;23353:2;23345:6;23341:15;23330:9;23323:34;23405:2;23397:6;23393:15;23388:2;23377:9;23373:18;23366:43;;23445:6;23440:2;23429:9;23425:18;23418:34;23488:3;23483:2;23472:9;23468:18;23461:31;23509:46;23550:3;23539:9;23535:19;23527:6;23509:46;:::i;:::-;23501:54;23049:512;-1:-1:-1;;;;;;23049:512:18:o;23566:249::-;23635:6;23688:2;23676:9;23667:7;23663:23;23659:32;23656:52;;;23704:1;23701;23694:12;23656:52;23736:9;23730:16;23755:30;23779:5;23755:30;:::i;23820:112::-;23852:1;23878;23868:35;;23883:18;;:::i;:::-;-1:-1:-1;23917:9:18;;23820:112::o;25001:184::-;25053:77;25050:1;25043:88;25150:4;25147:1;25140:15;25174:4;25171:1;25164:15

Swarm Source

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