ETH Price: $3,288.72 (+0.72%)
Gas: 19 Gwei

Token

Ashley Longshore x Metagolden (MGOLD)
 

Overview

Max Total Supply

862 MGOLD

Holders

347

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
darqueen.eth
Balance
4 MGOLD
0xb41B637146a83C5B7D4448E9142025fE188FB777
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:
AshleyMetagolden

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 17: AshleyMetagolden.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import './ERC721EnumerableLite.sol';
import './Signed.sol';
import "./Strings.sol";

//Ashley Longshore x Metagolden
//Ashley Longshore x Metagolden
//Ashley Longshore x Metagolden

contract AshleyMetagolden is ERC721EnumerableLite, Signed {
  using Strings for uint;

  uint public MGOLD_MaxMint = 10;
  uint public MGOLD_MaxSupply = 862;
  uint public MGOLD_MintPrice = 0.16 ether;
  bool public MGOLD_SaleActive = false;
  string private MGOLD_TokenURI = 'https://gateway.pinata.cloud/ipfs/QmXtR8i3EbZDgio9rz24KUWBcqg3S5avZdA34VqEvUYv4v/';

  address public MGOLD_Address1 = 0xAE8EaBB58327f856D93248c2a009291d26BfdE18;
  address public MGOLD_Address2 = 0xAE8EaBB58327f856D93248c2a009291d26BfdE18;

  constructor()
    Delegated()
    ERC721B("Ashley Longshore x Metagolden", "MGOLD", 0){
  }

  fallback() external payable {}

  receive() external payable {}

  function tokenURI(uint tokenId) external view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    return string(abi.encodePacked(MGOLD_TokenURI, tokenId.toString() ));
  }

  function mint( uint quantity ) external payable {
    require( MGOLD_SaleActive, "Ashley Longshore x Metagolden Sale is not active" );
    require( quantity <= MGOLD_MaxMint, "Ashley Longshore x Metagolden mint is too big" );
    require( msg.value >= MGOLD_MintPrice * quantity, "Invalid Ether Amount" );

    uint supply = totalSupply();
    require( supply + quantity <= MGOLD_MaxSupply, "Not enough NFTs left :(" );

    for(uint i; i < quantity; ++i){
      _mint( msg.sender, supply++ );
    }
  }

  function burnTokens(address account, uint[] calldata tokenIds) external payable onlyDelegates {
    for(uint i; i < tokenIds.length; ++i ){
      require( _owners[ tokenIds[i] ] == account, "Could not verify owner" );
      _burn( tokenIds[i] );
    }
  }

  //Used for the owner to mint the nfts to the wallet of the fiat purchasers
  function fiat_mint(uint[] calldata quantity, address[] calldata recipient) external payable onlyDelegates {
    require(quantity.length == recipient.length, "Quantity array and recipient array are not equal" );

    uint totalQuantity;
    uint supply = totalSupply();
    for(uint i; i < quantity.length; ++i){
      totalQuantity += quantity[i];
    }
    require( supply + totalQuantity <= MGOLD_MaxSupply, "Not enough NFTs left :(" );
    delete totalQuantity;

    for(uint i; i < recipient.length; ++i){
      for(uint j; j < quantity[i]; ++j){
        _mint( recipient[i], supply++ );
      }
    }
  }

  function Set_MGOLD_SaleActive(bool MGOLD_SaleActive_ ) external onlyDelegates{
    require( MGOLD_SaleActive != MGOLD_SaleActive_ , "Same value as before" );
    MGOLD_SaleActive = MGOLD_SaleActive_;
  }

  function setBaseURI( string calldata baseURI ) external onlyDelegates {
    MGOLD_TokenURI = baseURI;
  }

  function setValues(uint _MGOLD_MaxMint, uint _MGOLD_MaxSupply, uint _price, address _MGOLD_Address1, address _MGOLD_Address2 ) external onlyDelegates {
    require( MGOLD_MaxMint != _MGOLD_MaxMint || MGOLD_MaxSupply != _MGOLD_MaxSupply || MGOLD_MintPrice != _price || MGOLD_Address1 != _MGOLD_Address1 || MGOLD_Address2 != _MGOLD_Address2, "Same values as before" );
    require(_MGOLD_MaxSupply >= totalSupply(), "New supply is less than previous supply" );

    MGOLD_MaxMint = _MGOLD_MaxMint;
    MGOLD_MaxSupply = _MGOLD_MaxSupply;
    MGOLD_MintPrice = _price;
    MGOLD_Address1 = _MGOLD_Address1;
    MGOLD_Address2 = _MGOLD_Address2;
  }

  function finalize() external onlyOwner {
    selfdestruct(payable(owner()));
  }

  function emergency_withdraw() external onlyOwner {
    (bool emergency_withdraw_status,) = MGOLD_Address1.call{value: address(this).balance}("");
    require(emergency_withdraw_status, "Failed Emergency Withdraw");
  }

  function withdraw() external {
    require(address(this).balance > 0, "Not enough ether to withdraw");
    uint256 walletBalance = address(this).balance;
        
    (bool withdrew_address1,) = MGOLD_Address1.call{value: walletBalance * 50 / 100}(""); //50
    (bool withdrew_address2,) = MGOLD_Address2.call{value: walletBalance * 50 / 100}(""); //50

    require(withdrew_address1 && withdrew_address2, "Failed withdraw");
  }

  function _beforeTokenTransfer(address from, address to, uint tokenId) internal override {
    if( from != address(0) )
      --_balances[from];

    if( to != address(0) )
      ++_balances[to];
  }

  function _burn(uint tokenId) internal override {
    //failsafe
    address from = ownerOf(tokenId);
    _approve(owner(), tokenId);
    _beforeTokenTransfer( from, address(0), tokenId );

    ++_burned;
    _owners[tokenId] = address(0);
    emit Transfer(from, address(0), tokenId);
  }

  function _mint(address to, uint tokenId) internal override {
    _beforeTokenTransfer( address(0), to, tokenId );

    _owners.push(to);
    emit Transfer(address(0), to, tokenId);
  }

}

File 1 of 17: 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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 3 of 17: 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 17: Delegated.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./Ownable.sol";

contract Delegated is Ownable{
  mapping(address => bool) internal _delegates;

  constructor(){
    _delegates[owner()] = true;
  }

  modifier onlyDelegates {
    require(_delegates[msg.sender], "Invalid delegate" );
    _;
  }

  //onlyOwner
  function isDelegate( address addr ) external view onlyOwner returns ( bool ){
    return _delegates[addr];
  }

  function setDelegate( address addr, bool isDelegate_ ) external onlyOwner{
    _delegates[addr] = isDelegate_;
  }

  function transferOwnership(address newOwner) public virtual override onlyOwner {
    _delegates[newOwner] = true;
    super.transferOwnership( newOwner );
  }
}

File 5 of 17: ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 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 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 6 of 17: 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 17: ERC721B.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/****************************************
 * @author: squeebo_nft                 *
 * @team:   GoldenX                     *
 ****************************************
 *   Blimpie-ERC721 provides low-gas    *
 *           mints + transfers          *
 ****************************************/

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

abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    uint internal _burned;
    uint internal _offset;
    address[] internal _owners;

    mapping(uint => address) internal _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_, uint offset) {
        _name = name_;
        _symbol = symbol_;
        _offset = offset;
        for(uint i; i < _offset; ++i ){
            _owners.push(address(0));
        }
    }

    //public
    function balanceOf(address owner) public view virtual override returns (uint) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    function name() external view virtual override returns (string memory) {
        return _name;
    }

    function ownerOf(uint tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    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 symbol() external view virtual override returns (string memory) {
        return _symbol;
    }

    function totalSupply() public view virtual returns (uint) {
        return _owners.length - (_offset + _burned);
    }


    function approve(address to, uint tokenId) external virtual override {
        address owner = ERC721B.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(uint tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
        return _tokenApprovals[tokenId];
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function setApprovalForAll(address operator, bool approved) external virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function transferFrom(
        address from,
        address to,
        uint 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,
        uint tokenId
    ) external virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }


    //internal
    function _approve(address to, uint tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721B.ownerOf(tokenId), to, tokenId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint tokenId
    ) internal virtual {}

    function _burn(uint tokenId) internal virtual {
        address owner = ERC721B.ownerOf(tokenId);

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

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

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

    function _checkOnERC721Received(
        address from,
        address to,
        uint 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 _exists(uint tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721B.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _mint(address to, uint 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 _next() internal view virtual returns( uint ){
        return _owners.length;
    }

    function _safeMint(address to, uint tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    function _safeMint(
        address to,
        uint tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _safeTransfer(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _transfer(
        address from,
        address to,
        uint tokenId
    ) internal virtual {
        require(ERC721B.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);
    }
}

File 8 of 17: ERC721EnumerableLite.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/****************************************
 * @author: squeebo_nft                 *
 ****************************************
 *   Blimpie-ERC721 provides low-gas    *
 *           mints + transfers          *
 ****************************************/

import "./ERC721B.sol";
import "./IERC721Batch.sol";
import "./IERC721Enumerable.sol";

abstract contract ERC721EnumerableLite is ERC721B, IERC721Batch, IERC721Enumerable {
    mapping(address => uint) internal _balances;

    function isOwnerOf( address account, uint[] calldata tokenIds ) external view virtual override returns( bool ){
        for(uint i; i < tokenIds.length; ++i ){
            if( _owners[ tokenIds[i] ] != account )
                return false;
        }

        return true;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint index) public view override returns (uint tokenId) {
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }

    function tokenByIndex(uint index) external view virtual override returns (uint) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return index;
    }

    function totalSupply() public view virtual override( ERC721B, IERC721Enumerable ) returns (uint) {
        return _owners.length - (_offset + _burned);
    }

    function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external override{
        for(uint i; i < tokenIds.length; ++i ){
            safeTransferFrom( from, to, tokenIds[i], data );
        }
    }

    function walletOfOwner( address account ) external view virtual override returns( uint[] memory ){
        uint quantity = balanceOf( account );
        uint[] memory wallet = new uint[]( quantity );
        for( uint i; i < quantity; ++i ){
            wallet[i] = tokenOfOwnerByIndex( account, i );
        }
        return wallet;
    }
}

File 9 of 17: 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 10 of 17: 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 11 of 17: IERC721Batch.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

interface IERC721Batch {
  function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool );
  function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external;
  function walletOfOwner( address account ) external view returns( uint[] memory );
}

File 12 of 17: 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 17: 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 17: 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 17: 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 17: Signed.sol
// SPDX-License-Identifier: BSD-3

pragma solidity ^0.8.0;

import './Delegated.sol';
import "./Strings.sol";
import "./ECDSA.sol";

contract Signed is Delegated{
  using Strings for uint256;
  using ECDSA for bytes32;

  string private _secret;
  address private _signer;

  function setSecret( string calldata secret ) external onlyOwner{
    _secret = secret;
  }

  function setSigner( address signer ) external onlyOwner{
    _signer = signer;
  }


  function createHash( string memory data ) internal view returns ( bytes32 ){
    return keccak256( abi.encodePacked( address(this), msg.sender, data, _secret ) );
  }

  function getSigner( bytes32 hash, bytes memory signature ) internal pure returns( address ){
    return hash.toEthSignedMessageHash().recover( signature );
  }

  function isAuthorizedSigner( address extracted ) internal view virtual returns( bool ){
    return extracted == _signer;
  }

  function verifySignature( string memory data, bytes calldata signature ) internal view {
    address extracted = getSigner( createHash( data ), signature );
    require( isAuthorizedSigner( extracted ), "Signature verification failed" );
  }


}

File 17 of 17: 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MGOLD_Address1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MGOLD_Address2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MGOLD_MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MGOLD_MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MGOLD_MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MGOLD_SaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"MGOLD_SaleActive_","type":"bool"}],"name":"Set_MGOLD_SaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"emergency_withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"fiat_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"finalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"secret","type":"string"}],"name":"setSecret","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MGOLD_MaxMint","type":"uint256"},{"internalType":"uint256","name":"_MGOLD_MaxSupply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"address","name":"_MGOLD_Address1","type":"address"},{"internalType":"address","name":"_MGOLD_Address2","type":"address"}],"name":"setValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a600c5561035e600d556702386f26fc100000600e55600f805460ff19169055610100604052605160808181529062002fd660a03980516200004b916010916020909101906200022d565b506011805473ae8eabb58327f856d93248c2a009291d26bfde186001600160a01b031991821681179092556012805490911690911790553480156200008f57600080fd5b50604080518082018252601d81527f4173686c6579204c6f6e6773686f72652078204d657461676f6c64656e0000006020808301918252835180850190945260058452641351d3d31160da1b908401528151919291600091620000f5918391906200022d565b5081516200010b9060019060208501906200022d565b50600381905560005b6003548110156200017257600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b03191690556200016a8162000310565b905062000114565b50505050620001906200018a620001d760201b60201c565b620001db565b600160096000620001a96008546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556200033a565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200023b90620002d3565b90600052602060002090601f0160209004810192826200025f5760008555620002aa565b82601f106200027a57805160ff1916838001178555620002aa565b82800160010185558215620002aa579182015b82811115620002aa5782518255916020019190600101906200028d565b50620002b8929150620002bc565b5090565b5b80821115620002b85760008155600101620002bd565b600181811c90821680620002e857607f821691505b602082108114156200030a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200033357634e487b7160e01b600052601160045260246000fd5b5060010190565b612c8c806200034a6000396000f3fe6080604052600436106102325760003560e01c80636c19e7831161012d578063a22cb465116100b0578063c87b56dd11610077578063c87b56dd14610671578063ca833e3e14610691578063cbc1cfd2146106a7578063dfe2c2c9146106bc578063e985e9c5146106d6578063f2fde38b1461071f57005b8063a22cb465146105db578063b534a5c4146105fb578063b88d4fde1461061b578063ba17649c1461063b578063c39bc7891461065b57005b80638da5cb5b116100f45780638da5cb5b1461056257806391918d1f1461058057806395d89b41146105a05780639e759865146105b5578063a0712d68146105c857005b80636c19e783146104da57806370a08231146104fa578063715018a61461051a5780637ed6c9261461052f578063839f857a1461054f57005b8063438b6300116101b55780634f6ccce71161017c5780634f6ccce71461044457806355f804b31461046457806356a47ee814610484578063606fb0241461049a5780636352211e146104ba57005b8063438b6300146103a25780634a994eef146103cf5780634bb278f3146103ef5780634c64df44146104045780634d44660c1461042457005b806318160ddd116101f957806318160ddd1461030a57806323b872dd1461032d5780632f745c591461034d5780633ccfd60b1461036d57806342842e0e1461038257005b806301ffc9a71461023b57806306fdde03146102705780630777962714610292578063081812fc146102b2578063095ea7b3146102ea57005b3661023957005b005b34801561024757600080fd5b5061025b61025636600461276f565b61073f565b60405190151581526020015b60405180910390f35b34801561027c57600080fd5b5061028561076a565b60405161026791906129c4565b34801561029e57600080fd5b5061025b6102ad36600461244a565b6107fc565b3480156102be57600080fd5b506102d26102cd3660046127eb565b610855565b6040516001600160a01b039091168152602001610267565b3480156102f657600080fd5b506102396103053660046126be565b6108dd565b34801561031657600080fd5b5061031f6109f3565b604051908152602001610267565b34801561033957600080fd5b50610239610348366004612529565b610a17565b34801561035957600080fd5b5061031f6103683660046126be565b610a48565b34801561037957600080fd5b50610239610b14565b34801561038e57600080fd5b5061023961039d366004612529565b610c85565b3480156103ae57600080fd5b506103c26103bd36600461244a565b610ca0565b6040516102679190612980565b3480156103db57600080fd5b506102396103ea366004612694565b610d40565b3480156103fb57600080fd5b50610239610d95565b34801561041057600080fd5b5061023961041f366004612754565b610dcd565b34801561043057600080fd5b5061025b61043f366004612641565b610e5f565b34801561045057600080fd5b5061031f61045f3660046127eb565b610ee1565b34801561047057600080fd5b5061023961047f3660046127a9565b610f52565b34801561049057600080fd5b5061031f600d5481565b3480156104a657600080fd5b506012546102d2906001600160a01b031681565b3480156104c657600080fd5b506102d26104d53660046127eb565b610f8d565b3480156104e657600080fd5b506102396104f536600461244a565b611019565b34801561050657600080fd5b5061031f61051536600461244a565b611065565b34801561052657600080fd5b50610239611133565b34801561053b57600080fd5b5061023961054a3660046127a9565b611169565b61023961055d3660046126e8565b61119f565b34801561056e57600080fd5b506008546001600160a01b03166102d2565b34801561058c57600080fd5b5061023961059b366004612804565b611371565b3480156105ac57600080fd5b506102856114da565b6102396105c3366004612641565b6114e9565b6102396105d63660046127eb565b6115ea565b3480156105e757600080fd5b506102396105f6366004612694565b6117a3565b34801561060757600080fd5b50610239610616366004612498565b611868565b34801561062757600080fd5b50610239610636366004612565565b6118dd565b34801561064757600080fd5b506011546102d2906001600160a01b031681565b34801561066757600080fd5b5061031f600c5481565b34801561067d57600080fd5b5061028561068c3660046127eb565b61190f565b34801561069d57600080fd5b5061031f600e5481565b3480156106b357600080fd5b506102396119b0565b3480156106c857600080fd5b50600f5461025b9060ff1681565b3480156106e257600080fd5b5061025b6106f1366004612465565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072b57600080fd5b5061023961073a36600461244a565b611a80565b60006001600160e01b0319821663780e9d6360e01b1480610764575061076482611ad6565b92915050565b60606000805461077990612b7e565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612b7e565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6008546000906001600160a01b031633146108325760405162461bcd60e51b815260040161082990612a53565b60405180910390fd5b506001600160a01b03811660009081526009602052604090205460ff165b919050565b600061086082611b26565b6108c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610829565b506000908152600560205260409020546001600160a01b031690565b60006108e882610f8d565b9050806001600160a01b0316836001600160a01b031614156109565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610829565b336001600160a01b0382161480610972575061097281336106f1565b6109e45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610829565b6109ee8383611b70565b505050565b6000600254600354610a059190612ad9565b600454610a129190612b24565b905090565b610a213382611bde565b610a3d5760405162461bcd60e51b815260040161082990612a88565b6109ee838383611cc8565b60008060005b600454811015610ab75760048181548110610a6b57610a6b612c14565b6000918252602090912001546001600160a01b0386811691161415610aa75783821415610a9b5791506107649050565b610aa482612bb9565b91505b610ab081612bb9565b9050610a4e565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610829565b60004711610b645760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820657468657220746f207769746864726177000000006044820152606401610829565b60115447906000906001600160a01b03166064610b82846032612b05565b610b8c9190612af1565b604051600081818185875af1925050503d8060008114610bc8576040519150601f19603f3d011682016040523d82523d6000602084013e610bcd565b606091505b50506012549091506000906001600160a01b03166064610bee856032612b05565b610bf89190612af1565b604051600081818185875af1925050503d8060008114610c34576040519150601f19603f3d011682016040523d82523d6000602084013e610c39565b606091505b50509050818015610c475750805b6109ee5760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420776974686472617760881b6044820152606401610829565b6109ee838383604051806020016040528060008152506118dd565b60606000610cad83611065565b905060008167ffffffffffffffff811115610cca57610cca612c2a565b604051908082528060200260200182016040528015610cf3578160200160208202803683370190505b50905060005b82811015610d3857610d0b8582610a48565b828281518110610d1d57610d1d612c14565b6020908102919091010152610d3181612bb9565b9050610cf9565b509392505050565b6008546001600160a01b03163314610d6a5760405162461bcd60e51b815260040161082990612a53565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6008546001600160a01b03163314610dbf5760405162461bcd60e51b815260040161082990612a53565b6008546001600160a01b0316ff5b3360009081526009602052604090205460ff16610dfc5760405162461bcd60e51b8152600401610829906129d7565b600f5460ff1615158115151415610e4c5760405162461bcd60e51b815260206004820152601460248201527353616d652076616c7565206173206265666f726560601b6044820152606401610829565b600f805460ff1916911515919091179055565b6000805b82811015610ed457846001600160a01b03166004858584818110610e8957610e89612c14565b9050602002013581548110610ea057610ea0612c14565b6000918252602090912001546001600160a01b031614610ec4576000915050610eda565b610ecd81612bb9565b9050610e63565b50600190505b9392505050565b6000610eeb6109f3565b8210610f4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610829565b5090565b3360009081526009602052604090205460ff16610f815760405162461bcd60e51b8152600401610829906129d7565b6109ee60108383612305565b60008060048381548110610fa357610fa3612c14565b6000918252602090912001546001600160a01b03169050806107645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610829565b6008546001600160a01b031633146110435760405162461bcd60e51b815260040161082990612a53565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166110d05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610829565b6000805b60045481101561112c57600481815481106110f1576110f1612c14565b6000918252602090912001546001600160a01b038581169116141561111c5761111982612bb9565b91505b61112581612bb9565b90506110d4565b5092915050565b6008546001600160a01b0316331461115d5760405162461bcd60e51b815260040161082990612a53565b6111676000611e29565b565b6008546001600160a01b031633146111935760405162461bcd60e51b815260040161082990612a53565b6109ee600a8383612305565b3360009081526009602052604090205460ff166111ce5760405162461bcd60e51b8152600401610829906129d7565b8281146112365760405162461bcd60e51b815260206004820152603060248201527f5175616e7469747920617272617920616e6420726563697069656e742061727260448201526f185e48185c99481b9bdd08195c5d585b60821b6064820152608401610829565b6000806112416109f3565b905060005b858110156112845786868281811061126057611260612c14565b90506020020135836112729190612ad9565b925061127d81612bb9565b9050611246565b50600d546112928383612ad9565b11156112da5760405162461bcd60e51b815260206004820152601760248201527609cdee840cadcdeeaced0409c8ca8e640d8cacce840745604b1b6044820152606401610829565b6000915060005b838110156113685760005b8787838181106112fe576112fe612c14565b905060200201358110156113575761134786868481811061132157611321612c14565b9050602002016020810190611336919061244a565b8461134081612bb9565b9550611e7b565b61135081612bb9565b90506112ec565b5061136181612bb9565b90506112e1565b50505050505050565b3360009081526009602052604090205460ff166113a05760405162461bcd60e51b8152600401610829906129d7565b84600c541415806113b3575083600d5414155b806113c0575082600e5414155b806113d957506011546001600160a01b03838116911614155b806113f257506012546001600160a01b03828116911614155b6114365760405162461bcd60e51b815260206004820152601560248201527453616d652076616c756573206173206265666f726560581b6044820152606401610829565b61143e6109f3565b84101561149d5760405162461bcd60e51b815260206004820152602760248201527f4e657720737570706c79206973206c657373207468616e2070726576696f757360448201526620737570706c7960c81b6064820152608401610829565b600c94909455600d92909255600e55601180546001600160a01b039283166001600160a01b03199182161790915560128054929093169116179055565b60606001805461077990612b7e565b3360009081526009602052604090205460ff166115185760405162461bcd60e51b8152600401610829906129d7565b60005b818110156115e457836001600160a01b0316600484848481811061154157611541612c14565b905060200201358154811061155857611558612c14565b6000918252602090912001546001600160a01b0316146115b35760405162461bcd60e51b815260206004820152601660248201527521b7bab632103737ba103b32b934b33c9037bbb732b960511b6044820152606401610829565b6115d48383838181106115c8576115c8612c14565b90506020020135611f03565b6115dd81612bb9565b905061151b565b50505050565b600f5460ff166116555760405162461bcd60e51b815260206004820152603060248201527f4173686c6579204c6f6e6773686f72652078204d657461676f6c64656e20536160448201526f6c65206973206e6f742061637469766560801b6064820152608401610829565b600c548111156116bd5760405162461bcd60e51b815260206004820152602d60248201527f4173686c6579204c6f6e6773686f72652078204d657461676f6c64656e206d6960448201526c6e7420697320746f6f2062696760981b6064820152608401610829565b80600e546116cb9190612b05565b3410156117115760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5908115d1a195c88105b5bdd5b9d60621b6044820152606401610829565b600061171b6109f3565b600d5490915061172b8383612ad9565b11156117735760405162461bcd60e51b815260206004820152601760248201527609cdee840cadcdeeaced0409c8ca8e640d8cacce840745604b1b6044820152606401610829565b60005b828110156109ee57611793338361178c81612bb9565b9450611e7b565b61179c81612bb9565b9050611776565b6001600160a01b0382163314156117fc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610829565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b83811015611368576118cd878787878581811061188a5761188a612c14565b9050602002013586868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506118dd92505050565b6118d681612bb9565b905061186b565b6118e73383611bde565b6119035760405162461bcd60e51b815260040161082990612a88565b6115e484848484611fb7565b606061191a82611b26565b61197e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610829565b601061198983611fea565b60405160200161199a92919061289c565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146119da5760405162461bcd60e51b815260040161082990612a53565b6011546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611a27576040519150601f19603f3d011682016040523d82523d6000602084013e611a2c565b606091505b5050905080611a7d5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420456d657267656e6379205769746864726177000000000000006044820152606401610829565b50565b6008546001600160a01b03163314611aaa5760405162461bcd60e51b815260040161082990612a53565b6001600160a01b0381166000908152600960205260409020805460ff19166001179055611a7d816120e8565b60006001600160e01b031982166380ac58cd60e01b1480611b0757506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b0319831614610764565b60045460009082108015610764575060006001600160a01b031660048381548110611b5357611b53612c14565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ba582610f8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611be982611b26565b611c4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610829565b6000611c5583610f8d565b9050806001600160a01b0316846001600160a01b03161480611c905750836001600160a01b0316611c8584610855565b6001600160a01b0316145b80611cc057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cdb82610f8d565b6001600160a01b031614611d435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610829565b6001600160a01b038216611da55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610829565b611db0838383612180565b611dbb600082611b70565b8160048281548110611dcf57611dcf612c14565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e8760008383612180565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611f0e82610f8d565b9050611f2b611f256008546001600160a01b031690565b83611b70565b611f3781600084612180565b600260008154611f4690612bb9565b91905081905550600060048381548110611f6257611f62612c14565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611fc2848484611cc8565b611fce848484846121f8565b6115e45760405162461bcd60e51b815260040161082990612a01565b60608161200e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612038578061202281612bb9565b91506120319050600a83612af1565b9150612012565b60008167ffffffffffffffff81111561205357612053612c2a565b6040519080825280601f01601f19166020018201604052801561207d576020820181803683370190505b5090505b8415611cc057612092600183612b24565b915061209f600a86612bd4565b6120aa906030612ad9565b60f81b8183815181106120bf576120bf612c14565b60200101906001600160f81b031916908160001a9053506120e1600a86612af1565b9450612081565b6008546001600160a01b031633146121125760405162461bcd60e51b815260040161082990612a53565b6001600160a01b0381166121775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610829565b611a7d81611e29565b6001600160a01b038316156121ba576001600160a01b038316600090815260076020526040812080549091906121b590612b67565b909155505b6001600160a01b038216156109ee576001600160a01b038216600090815260076020526040812080549091906121ef90612bb9565b90915550505050565b60006001600160a01b0384163b156122fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061223c903390899088908890600401612943565b602060405180830381600087803b15801561225657600080fd5b505af1925050508015612286575060408051601f3d908101601f191682019092526122839181019061278c565b60015b6122e0573d8080156122b4576040519150601f19603f3d011682016040523d82523d6000602084013e6122b9565b606091505b5080516122d85760405162461bcd60e51b815260040161082990612a01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cc0565b506001949350505050565b82805461231190612b7e565b90600052602060002090601f0160209004810192826123335760008555612379565b82601f1061234c5782800160ff19823516178555612379565b82800160010185558215612379579182015b8281111561237957823582559160200191906001019061235e565b50610f4e9291505b80821115610f4e5760008155600101612381565b80356001600160a01b038116811461085057600080fd5b60008083601f8401126123be57600080fd5b50813567ffffffffffffffff8111156123d657600080fd5b6020830191508360208260051b85010111156123f157600080fd5b9250929050565b8035801515811461085057600080fd5b60008083601f84011261241a57600080fd5b50813567ffffffffffffffff81111561243257600080fd5b6020830191508360208285010111156123f157600080fd5b60006020828403121561245c57600080fd5b610eda82612395565b6000806040838503121561247857600080fd5b61248183612395565b915061248f60208401612395565b90509250929050565b600080600080600080608087890312156124b157600080fd5b6124ba87612395565b95506124c860208801612395565b9450604087013567ffffffffffffffff808211156124e557600080fd5b6124f18a838b016123ac565b9096509450606089013591508082111561250a57600080fd5b5061251789828a01612408565b979a9699509497509295939492505050565b60008060006060848603121561253e57600080fd5b61254784612395565b925061255560208501612395565b9150604084013590509250925092565b6000806000806080858703121561257b57600080fd5b61258485612395565b935061259260208601612395565b925060408501359150606085013567ffffffffffffffff808211156125b657600080fd5b818701915087601f8301126125ca57600080fd5b8135818111156125dc576125dc612c2a565b604051601f8201601f19908116603f0116810190838211818310171561260457612604612c2a565b816040528281528a602084870101111561261d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006040848603121561265657600080fd5b61265f84612395565b9250602084013567ffffffffffffffff81111561267b57600080fd5b612687868287016123ac565b9497909650939450505050565b600080604083850312156126a757600080fd5b6126b083612395565b915061248f602084016123f8565b600080604083850312156126d157600080fd5b6126da83612395565b946020939093013593505050565b600080600080604085870312156126fe57600080fd5b843567ffffffffffffffff8082111561271657600080fd5b612722888389016123ac565b9096509450602087013591508082111561273b57600080fd5b50612748878288016123ac565b95989497509550505050565b60006020828403121561276657600080fd5b610eda826123f8565b60006020828403121561278157600080fd5b8135610eda81612c40565b60006020828403121561279e57600080fd5b8151610eda81612c40565b600080602083850312156127bc57600080fd5b823567ffffffffffffffff8111156127d357600080fd5b6127df85828601612408565b90969095509350505050565b6000602082840312156127fd57600080fd5b5035919050565b600080600080600060a0868803121561281c57600080fd5b85359450602086013593506040860135925061283a60608701612395565b915061284860808701612395565b90509295509295909350565b6000815180845261286c816020860160208601612b3b565b601f01601f19169290920160200192915050565b60008151612892818560208601612b3b565b9290920192915050565b600080845481600182811c9150808316806128b857607f831692505b60208084108214156128d857634e487b7160e01b86526022600452602486fd5b8180156128ec57600181146128fd5761292a565b60ff1986168952848901965061292a565b60008b81526020902060005b868110156129225781548b820152908501908301612909565b505084890196505b50505050505061293a8185612880565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061297690830184612854565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129b85783518352928401929184019160010161299c565b50909695505050505050565b602081526000610eda6020830184612854565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612aec57612aec612be8565b500190565b600082612b0057612b00612bfe565b500490565b6000816000190483118215151615612b1f57612b1f612be8565b500290565b600082821015612b3657612b36612be8565b500390565b60005b83811015612b56578181015183820152602001612b3e565b838111156115e45750506000910152565b600081612b7657612b76612be8565b506000190190565b600181811c90821680612b9257607f821691505b60208210811415612bb357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bcd57612bcd612be8565b5060010190565b600082612be357612be3612bfe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a7d57600080fdfea26469706673582212202bd5820c1dc261c0d4086b63b9aaffcecac75cdf2db29c95ec6b86ee6b0806db64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58745238693345625a4467696f39727a32344b55574263716733533561765a644133345671457655597634762f

Deployed Bytecode

0x6080604052600436106102325760003560e01c80636c19e7831161012d578063a22cb465116100b0578063c87b56dd11610077578063c87b56dd14610671578063ca833e3e14610691578063cbc1cfd2146106a7578063dfe2c2c9146106bc578063e985e9c5146106d6578063f2fde38b1461071f57005b8063a22cb465146105db578063b534a5c4146105fb578063b88d4fde1461061b578063ba17649c1461063b578063c39bc7891461065b57005b80638da5cb5b116100f45780638da5cb5b1461056257806391918d1f1461058057806395d89b41146105a05780639e759865146105b5578063a0712d68146105c857005b80636c19e783146104da57806370a08231146104fa578063715018a61461051a5780637ed6c9261461052f578063839f857a1461054f57005b8063438b6300116101b55780634f6ccce71161017c5780634f6ccce71461044457806355f804b31461046457806356a47ee814610484578063606fb0241461049a5780636352211e146104ba57005b8063438b6300146103a25780634a994eef146103cf5780634bb278f3146103ef5780634c64df44146104045780634d44660c1461042457005b806318160ddd116101f957806318160ddd1461030a57806323b872dd1461032d5780632f745c591461034d5780633ccfd60b1461036d57806342842e0e1461038257005b806301ffc9a71461023b57806306fdde03146102705780630777962714610292578063081812fc146102b2578063095ea7b3146102ea57005b3661023957005b005b34801561024757600080fd5b5061025b61025636600461276f565b61073f565b60405190151581526020015b60405180910390f35b34801561027c57600080fd5b5061028561076a565b60405161026791906129c4565b34801561029e57600080fd5b5061025b6102ad36600461244a565b6107fc565b3480156102be57600080fd5b506102d26102cd3660046127eb565b610855565b6040516001600160a01b039091168152602001610267565b3480156102f657600080fd5b506102396103053660046126be565b6108dd565b34801561031657600080fd5b5061031f6109f3565b604051908152602001610267565b34801561033957600080fd5b50610239610348366004612529565b610a17565b34801561035957600080fd5b5061031f6103683660046126be565b610a48565b34801561037957600080fd5b50610239610b14565b34801561038e57600080fd5b5061023961039d366004612529565b610c85565b3480156103ae57600080fd5b506103c26103bd36600461244a565b610ca0565b6040516102679190612980565b3480156103db57600080fd5b506102396103ea366004612694565b610d40565b3480156103fb57600080fd5b50610239610d95565b34801561041057600080fd5b5061023961041f366004612754565b610dcd565b34801561043057600080fd5b5061025b61043f366004612641565b610e5f565b34801561045057600080fd5b5061031f61045f3660046127eb565b610ee1565b34801561047057600080fd5b5061023961047f3660046127a9565b610f52565b34801561049057600080fd5b5061031f600d5481565b3480156104a657600080fd5b506012546102d2906001600160a01b031681565b3480156104c657600080fd5b506102d26104d53660046127eb565b610f8d565b3480156104e657600080fd5b506102396104f536600461244a565b611019565b34801561050657600080fd5b5061031f61051536600461244a565b611065565b34801561052657600080fd5b50610239611133565b34801561053b57600080fd5b5061023961054a3660046127a9565b611169565b61023961055d3660046126e8565b61119f565b34801561056e57600080fd5b506008546001600160a01b03166102d2565b34801561058c57600080fd5b5061023961059b366004612804565b611371565b3480156105ac57600080fd5b506102856114da565b6102396105c3366004612641565b6114e9565b6102396105d63660046127eb565b6115ea565b3480156105e757600080fd5b506102396105f6366004612694565b6117a3565b34801561060757600080fd5b50610239610616366004612498565b611868565b34801561062757600080fd5b50610239610636366004612565565b6118dd565b34801561064757600080fd5b506011546102d2906001600160a01b031681565b34801561066757600080fd5b5061031f600c5481565b34801561067d57600080fd5b5061028561068c3660046127eb565b61190f565b34801561069d57600080fd5b5061031f600e5481565b3480156106b357600080fd5b506102396119b0565b3480156106c857600080fd5b50600f5461025b9060ff1681565b3480156106e257600080fd5b5061025b6106f1366004612465565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072b57600080fd5b5061023961073a36600461244a565b611a80565b60006001600160e01b0319821663780e9d6360e01b1480610764575061076482611ad6565b92915050565b60606000805461077990612b7e565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612b7e565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6008546000906001600160a01b031633146108325760405162461bcd60e51b815260040161082990612a53565b60405180910390fd5b506001600160a01b03811660009081526009602052604090205460ff165b919050565b600061086082611b26565b6108c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610829565b506000908152600560205260409020546001600160a01b031690565b60006108e882610f8d565b9050806001600160a01b0316836001600160a01b031614156109565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610829565b336001600160a01b0382161480610972575061097281336106f1565b6109e45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610829565b6109ee8383611b70565b505050565b6000600254600354610a059190612ad9565b600454610a129190612b24565b905090565b610a213382611bde565b610a3d5760405162461bcd60e51b815260040161082990612a88565b6109ee838383611cc8565b60008060005b600454811015610ab75760048181548110610a6b57610a6b612c14565b6000918252602090912001546001600160a01b0386811691161415610aa75783821415610a9b5791506107649050565b610aa482612bb9565b91505b610ab081612bb9565b9050610a4e565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610829565b60004711610b645760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820657468657220746f207769746864726177000000006044820152606401610829565b60115447906000906001600160a01b03166064610b82846032612b05565b610b8c9190612af1565b604051600081818185875af1925050503d8060008114610bc8576040519150601f19603f3d011682016040523d82523d6000602084013e610bcd565b606091505b50506012549091506000906001600160a01b03166064610bee856032612b05565b610bf89190612af1565b604051600081818185875af1925050503d8060008114610c34576040519150601f19603f3d011682016040523d82523d6000602084013e610c39565b606091505b50509050818015610c475750805b6109ee5760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420776974686472617760881b6044820152606401610829565b6109ee838383604051806020016040528060008152506118dd565b60606000610cad83611065565b905060008167ffffffffffffffff811115610cca57610cca612c2a565b604051908082528060200260200182016040528015610cf3578160200160208202803683370190505b50905060005b82811015610d3857610d0b8582610a48565b828281518110610d1d57610d1d612c14565b6020908102919091010152610d3181612bb9565b9050610cf9565b509392505050565b6008546001600160a01b03163314610d6a5760405162461bcd60e51b815260040161082990612a53565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6008546001600160a01b03163314610dbf5760405162461bcd60e51b815260040161082990612a53565b6008546001600160a01b0316ff5b3360009081526009602052604090205460ff16610dfc5760405162461bcd60e51b8152600401610829906129d7565b600f5460ff1615158115151415610e4c5760405162461bcd60e51b815260206004820152601460248201527353616d652076616c7565206173206265666f726560601b6044820152606401610829565b600f805460ff1916911515919091179055565b6000805b82811015610ed457846001600160a01b03166004858584818110610e8957610e89612c14565b9050602002013581548110610ea057610ea0612c14565b6000918252602090912001546001600160a01b031614610ec4576000915050610eda565b610ecd81612bb9565b9050610e63565b50600190505b9392505050565b6000610eeb6109f3565b8210610f4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610829565b5090565b3360009081526009602052604090205460ff16610f815760405162461bcd60e51b8152600401610829906129d7565b6109ee60108383612305565b60008060048381548110610fa357610fa3612c14565b6000918252602090912001546001600160a01b03169050806107645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610829565b6008546001600160a01b031633146110435760405162461bcd60e51b815260040161082990612a53565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166110d05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610829565b6000805b60045481101561112c57600481815481106110f1576110f1612c14565b6000918252602090912001546001600160a01b038581169116141561111c5761111982612bb9565b91505b61112581612bb9565b90506110d4565b5092915050565b6008546001600160a01b0316331461115d5760405162461bcd60e51b815260040161082990612a53565b6111676000611e29565b565b6008546001600160a01b031633146111935760405162461bcd60e51b815260040161082990612a53565b6109ee600a8383612305565b3360009081526009602052604090205460ff166111ce5760405162461bcd60e51b8152600401610829906129d7565b8281146112365760405162461bcd60e51b815260206004820152603060248201527f5175616e7469747920617272617920616e6420726563697069656e742061727260448201526f185e48185c99481b9bdd08195c5d585b60821b6064820152608401610829565b6000806112416109f3565b905060005b858110156112845786868281811061126057611260612c14565b90506020020135836112729190612ad9565b925061127d81612bb9565b9050611246565b50600d546112928383612ad9565b11156112da5760405162461bcd60e51b815260206004820152601760248201527609cdee840cadcdeeaced0409c8ca8e640d8cacce840745604b1b6044820152606401610829565b6000915060005b838110156113685760005b8787838181106112fe576112fe612c14565b905060200201358110156113575761134786868481811061132157611321612c14565b9050602002016020810190611336919061244a565b8461134081612bb9565b9550611e7b565b61135081612bb9565b90506112ec565b5061136181612bb9565b90506112e1565b50505050505050565b3360009081526009602052604090205460ff166113a05760405162461bcd60e51b8152600401610829906129d7565b84600c541415806113b3575083600d5414155b806113c0575082600e5414155b806113d957506011546001600160a01b03838116911614155b806113f257506012546001600160a01b03828116911614155b6114365760405162461bcd60e51b815260206004820152601560248201527453616d652076616c756573206173206265666f726560581b6044820152606401610829565b61143e6109f3565b84101561149d5760405162461bcd60e51b815260206004820152602760248201527f4e657720737570706c79206973206c657373207468616e2070726576696f757360448201526620737570706c7960c81b6064820152608401610829565b600c94909455600d92909255600e55601180546001600160a01b039283166001600160a01b03199182161790915560128054929093169116179055565b60606001805461077990612b7e565b3360009081526009602052604090205460ff166115185760405162461bcd60e51b8152600401610829906129d7565b60005b818110156115e457836001600160a01b0316600484848481811061154157611541612c14565b905060200201358154811061155857611558612c14565b6000918252602090912001546001600160a01b0316146115b35760405162461bcd60e51b815260206004820152601660248201527521b7bab632103737ba103b32b934b33c9037bbb732b960511b6044820152606401610829565b6115d48383838181106115c8576115c8612c14565b90506020020135611f03565b6115dd81612bb9565b905061151b565b50505050565b600f5460ff166116555760405162461bcd60e51b815260206004820152603060248201527f4173686c6579204c6f6e6773686f72652078204d657461676f6c64656e20536160448201526f6c65206973206e6f742061637469766560801b6064820152608401610829565b600c548111156116bd5760405162461bcd60e51b815260206004820152602d60248201527f4173686c6579204c6f6e6773686f72652078204d657461676f6c64656e206d6960448201526c6e7420697320746f6f2062696760981b6064820152608401610829565b80600e546116cb9190612b05565b3410156117115760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5908115d1a195c88105b5bdd5b9d60621b6044820152606401610829565b600061171b6109f3565b600d5490915061172b8383612ad9565b11156117735760405162461bcd60e51b815260206004820152601760248201527609cdee840cadcdeeaced0409c8ca8e640d8cacce840745604b1b6044820152606401610829565b60005b828110156109ee57611793338361178c81612bb9565b9450611e7b565b61179c81612bb9565b9050611776565b6001600160a01b0382163314156117fc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610829565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b83811015611368576118cd878787878581811061188a5761188a612c14565b9050602002013586868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506118dd92505050565b6118d681612bb9565b905061186b565b6118e73383611bde565b6119035760405162461bcd60e51b815260040161082990612a88565b6115e484848484611fb7565b606061191a82611b26565b61197e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610829565b601061198983611fea565b60405160200161199a92919061289c565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146119da5760405162461bcd60e51b815260040161082990612a53565b6011546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611a27576040519150601f19603f3d011682016040523d82523d6000602084013e611a2c565b606091505b5050905080611a7d5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420456d657267656e6379205769746864726177000000000000006044820152606401610829565b50565b6008546001600160a01b03163314611aaa5760405162461bcd60e51b815260040161082990612a53565b6001600160a01b0381166000908152600960205260409020805460ff19166001179055611a7d816120e8565b60006001600160e01b031982166380ac58cd60e01b1480611b0757506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b0319831614610764565b60045460009082108015610764575060006001600160a01b031660048381548110611b5357611b53612c14565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ba582610f8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611be982611b26565b611c4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610829565b6000611c5583610f8d565b9050806001600160a01b0316846001600160a01b03161480611c905750836001600160a01b0316611c8584610855565b6001600160a01b0316145b80611cc057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cdb82610f8d565b6001600160a01b031614611d435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610829565b6001600160a01b038216611da55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610829565b611db0838383612180565b611dbb600082611b70565b8160048281548110611dcf57611dcf612c14565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e8760008383612180565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611f0e82610f8d565b9050611f2b611f256008546001600160a01b031690565b83611b70565b611f3781600084612180565b600260008154611f4690612bb9565b91905081905550600060048381548110611f6257611f62612c14565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611fc2848484611cc8565b611fce848484846121f8565b6115e45760405162461bcd60e51b815260040161082990612a01565b60608161200e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612038578061202281612bb9565b91506120319050600a83612af1565b9150612012565b60008167ffffffffffffffff81111561205357612053612c2a565b6040519080825280601f01601f19166020018201604052801561207d576020820181803683370190505b5090505b8415611cc057612092600183612b24565b915061209f600a86612bd4565b6120aa906030612ad9565b60f81b8183815181106120bf576120bf612c14565b60200101906001600160f81b031916908160001a9053506120e1600a86612af1565b9450612081565b6008546001600160a01b031633146121125760405162461bcd60e51b815260040161082990612a53565b6001600160a01b0381166121775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610829565b611a7d81611e29565b6001600160a01b038316156121ba576001600160a01b038316600090815260076020526040812080549091906121b590612b67565b909155505b6001600160a01b038216156109ee576001600160a01b038216600090815260076020526040812080549091906121ef90612bb9565b90915550505050565b60006001600160a01b0384163b156122fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061223c903390899088908890600401612943565b602060405180830381600087803b15801561225657600080fd5b505af1925050508015612286575060408051601f3d908101601f191682019092526122839181019061278c565b60015b6122e0573d8080156122b4576040519150601f19603f3d011682016040523d82523d6000602084013e6122b9565b606091505b5080516122d85760405162461bcd60e51b815260040161082990612a01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cc0565b506001949350505050565b82805461231190612b7e565b90600052602060002090601f0160209004810192826123335760008555612379565b82601f1061234c5782800160ff19823516178555612379565b82800160010185558215612379579182015b8281111561237957823582559160200191906001019061235e565b50610f4e9291505b80821115610f4e5760008155600101612381565b80356001600160a01b038116811461085057600080fd5b60008083601f8401126123be57600080fd5b50813567ffffffffffffffff8111156123d657600080fd5b6020830191508360208260051b85010111156123f157600080fd5b9250929050565b8035801515811461085057600080fd5b60008083601f84011261241a57600080fd5b50813567ffffffffffffffff81111561243257600080fd5b6020830191508360208285010111156123f157600080fd5b60006020828403121561245c57600080fd5b610eda82612395565b6000806040838503121561247857600080fd5b61248183612395565b915061248f60208401612395565b90509250929050565b600080600080600080608087890312156124b157600080fd5b6124ba87612395565b95506124c860208801612395565b9450604087013567ffffffffffffffff808211156124e557600080fd5b6124f18a838b016123ac565b9096509450606089013591508082111561250a57600080fd5b5061251789828a01612408565b979a9699509497509295939492505050565b60008060006060848603121561253e57600080fd5b61254784612395565b925061255560208501612395565b9150604084013590509250925092565b6000806000806080858703121561257b57600080fd5b61258485612395565b935061259260208601612395565b925060408501359150606085013567ffffffffffffffff808211156125b657600080fd5b818701915087601f8301126125ca57600080fd5b8135818111156125dc576125dc612c2a565b604051601f8201601f19908116603f0116810190838211818310171561260457612604612c2a565b816040528281528a602084870101111561261d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006040848603121561265657600080fd5b61265f84612395565b9250602084013567ffffffffffffffff81111561267b57600080fd5b612687868287016123ac565b9497909650939450505050565b600080604083850312156126a757600080fd5b6126b083612395565b915061248f602084016123f8565b600080604083850312156126d157600080fd5b6126da83612395565b946020939093013593505050565b600080600080604085870312156126fe57600080fd5b843567ffffffffffffffff8082111561271657600080fd5b612722888389016123ac565b9096509450602087013591508082111561273b57600080fd5b50612748878288016123ac565b95989497509550505050565b60006020828403121561276657600080fd5b610eda826123f8565b60006020828403121561278157600080fd5b8135610eda81612c40565b60006020828403121561279e57600080fd5b8151610eda81612c40565b600080602083850312156127bc57600080fd5b823567ffffffffffffffff8111156127d357600080fd5b6127df85828601612408565b90969095509350505050565b6000602082840312156127fd57600080fd5b5035919050565b600080600080600060a0868803121561281c57600080fd5b85359450602086013593506040860135925061283a60608701612395565b915061284860808701612395565b90509295509295909350565b6000815180845261286c816020860160208601612b3b565b601f01601f19169290920160200192915050565b60008151612892818560208601612b3b565b9290920192915050565b600080845481600182811c9150808316806128b857607f831692505b60208084108214156128d857634e487b7160e01b86526022600452602486fd5b8180156128ec57600181146128fd5761292a565b60ff1986168952848901965061292a565b60008b81526020902060005b868110156129225781548b820152908501908301612909565b505084890196505b50505050505061293a8185612880565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061297690830184612854565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129b85783518352928401929184019160010161299c565b50909695505050505050565b602081526000610eda6020830184612854565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612aec57612aec612be8565b500190565b600082612b0057612b00612bfe565b500490565b6000816000190483118215151615612b1f57612b1f612be8565b500290565b600082821015612b3657612b36612be8565b500390565b60005b83811015612b56578181015183820152602001612b3e565b838111156115e45750506000910152565b600081612b7657612b76612be8565b506000190190565b600181811c90821680612b9257607f821691505b60208210811415612bb357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bcd57612bcd612be8565b5060010190565b600082612be357612be3612bfe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a7d57600080fdfea26469706673582212202bd5820c1dc261c0d4086b63b9aaffcecac75cdf2db29c95ec6b86ee6b0806db64736f6c63430008070033

Deployed Bytecode Sourcemap

240:4776:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;833:223:7;;;;;;;;;;-1:-1:-1;833:223:7;;;;;:::i;:::-;;:::i;:::-;;;10828:14:17;;10821:22;10803:41;;10791:2;10776:18;833:223:7;;;;;;;;1499:100:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;339:110:3:-;;;;;;;;;;-1:-1:-1;339:110:3;;;;;:::i;:::-;;:::i;2791:213:6:-;;;;;;;;;;-1:-1:-1;2791:213:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9489:32:17;;;9471:51;;9459:2;9444:18;2791:213:6;9325:203:17;2384:401:6;;;;;;;;;;-1:-1:-1;2384:401:6;;;;;:::i;:::-;;:::i;1690:157:7:-;;;;;;;;;;;;;:::i;:::-;;;22521:25:17;;;22509:2;22494:18;1690:157:7;22375:177:17;3475:326:6;;;;;;;;;;-1:-1:-1;3475:326:6;;;;;:::i;:::-;;:::i;1062:419:7:-;;;;;;;;;;-1:-1:-1;1062:419:7;;;;;:::i;:::-;;:::i;3902:429:1:-;;;;;;;;;;;;;:::i;3807:178:6:-;;;;;;;;;;-1:-1:-1;3807:178:6;;;;;:::i;:::-;;:::i;2100:339:7:-;;;;;;;;;;-1:-1:-1;2100:339:7;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;453:114:3:-;;;;;;;;;;-1:-1:-1;453:114:3;;;;;:::i;:::-;;:::i;3596:80:1:-;;;;;;;;;;;;;:::i;2631:203::-;;;;;;;;;;-1:-1:-1;2631:203:1;;;;;:::i;:::-;;:::i;548:279:7:-;;;;;;;;;;-1:-1:-1;548:279:7;;;;;:::i;:::-;;:::i;1487:197::-;;;;;;;;;;-1:-1:-1;1487:197:7;;;;;:::i;:::-;;:::i;2838:105:1:-;;;;;;;;;;-1:-1:-1;2838:105:1;;;;;:::i;:::-;;:::i;363:33::-;;;;;;;;;;;;;;;;682:74;;;;;;;;;;-1:-1:-1;682:74:1;;;;-1:-1:-1;;;;;682:74:1;;;1605:232:6;;;;;;;;;;-1:-1:-1;1605:232:6;;;;;:::i;:::-;;:::i;370:82:15:-;;;;;;;;;;-1:-1:-1;370:82:15;;;;;:::i;:::-;;:::i;1166:327:6:-;;;;;;;;;;-1:-1:-1;1166:327:6;;;;;:::i;:::-;;:::i;1598:92:14:-;;;;;;;;;;;;;:::i;276:90:15:-;;;;;;;;;;-1:-1:-1;276:90:15;;;;;:::i;:::-;;:::i;2018:609:1:-;;;;;;:::i;:::-;;:::i;966:85:14:-;;;;;;;;;;-1:-1:-1;1038:6:14;;-1:-1:-1;;;;;1038:6:14;966:85;;2947:645:1;;;;;;;;;;-1:-1:-1;2947:645:1;;;;;:::i;:::-;;:::i;2149:104:6:-;;;;;;;;;;;;;:::i;1682:255:1:-;;;;;;:::i;:::-;;:::i;1175:503::-;;;;;;:::i;:::-;;:::i;3178:291:6:-;;;;;;;;;;-1:-1:-1;3178:291:6;;;;;:::i;:::-;;:::i;1853:241:7:-;;;;;;;;;;-1:-1:-1;1853:241:7;;;;;:::i;:::-;;:::i;3991:317:6:-;;;;;;;;;;-1:-1:-1;3991:317:6;;;;;:::i;:::-;;:::i;604:74:1:-;;;;;;;;;;-1:-1:-1;604:74:1;;;;-1:-1:-1;;;;;604:74:1;;;329:30;;;;;;;;;;;;;;;;923:248;;;;;;;;;;-1:-1:-1;923:248:1;;;;;:::i;:::-;;:::i;400:40::-;;;;;;;;;;;;;;;;3680:218;;;;;;;;;;;;;:::i;444:36::-;;;;;;;;;;-1:-1:-1;444:36:1;;;;;;;;3010:162:6;;;;;;;;;;-1:-1:-1;3010:162:6;;;;;:::i;:::-;-1:-1:-1;;;;;3130:25:6;;;3107:4;3130:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;3010:162;571:158:3;;;;;;;;;;-1:-1:-1;571:158:3;;;;;:::i;:::-;;:::i;833:223:7:-;936:4;-1:-1:-1;;;;;;959:50:7;;-1:-1:-1;;;959:50:7;;:90;;;1013:36;1037:11;1013:23;:36::i;:::-;952:97;833:223;-1:-1:-1;;833:223:7:o;1499:100:6:-;1555:13;1587:5;1580:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1499:100;:::o;339:110:3:-;1038:6:14;;409:4:3;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;428:16:3;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;1248:1:14;339:110:3::0;;;:::o;2791:213:6:-;2864:7;2891:16;2899:7;2891;:16::i;:::-;2883:73;;;;-1:-1:-1;;;2883:73:6;;17446:2:17;2883:73:6;;;17428:21:17;17485:2;17465:18;;;17458:30;17524:34;17504:18;;;17497:62;-1:-1:-1;;;17575:18:17;;;17568:42;17627:19;;2883:73:6;17244:408:17;2883:73:6;-1:-1:-1;2973:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;2973:24:6;;2791:213::o;2384:401::-;2463:13;2479:24;2495:7;2479:15;:24::i;:::-;2463:40;;2527:5;-1:-1:-1;;;;;2521:11:6;:2;-1:-1:-1;;;;;2521:11:6;;;2513:57;;;;-1:-1:-1;;;2513:57:6;;20513:2:17;2513:57:6;;;20495:21:17;20552:2;20532:18;;;20525:30;20591:34;20571:18;;;20564:62;-1:-1:-1;;;20642:18:17;;;20635:31;20683:19;;2513:57:6;20311:397:17;2513:57:6;666:10:2;-1:-1:-1;;;;;2602:21:6;;;;:62;;-1:-1:-1;2627:37:6;2644:5;666:10:2;3010:162:6;:::i;2627:37::-;2581:165;;;;-1:-1:-1;;;2581:165:6;;16200:2:17;2581:165:6;;;16182:21:17;16239:2;16219:18;;;16212:30;16278:34;16258:18;;;16251:62;16349:26;16329:18;;;16322:54;16393:19;;2581:165:6;15998:420:17;2581:165:6;2757:21;2766:2;2770:7;2757:8;:21::i;:::-;2453:332;2384:401;;:::o;1690:157:7:-;1781:4;1832:7;;1822;;:17;;;;:::i;:::-;1804:7;:14;:36;;;;:::i;:::-;1797:43;;1690:157;:::o;3475:326:6:-;3661:41;666:10:2;3694:7:6;3661:18;:41::i;:::-;3653:103;;;;-1:-1:-1;;;3653:103:6;;;;;;;:::i;:::-;3766:28;3776:4;3782:2;3786:7;3766:9;:28::i;1062:419:7:-;1148:12;1172:10;1197:6;1192:219;1209:7;:14;1205:18;;1192:219;;;1257:7;1265:1;1257:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1248:19:7;;;1257:10;;1248:19;1244:157;;;1300:5;1291;:14;1287:99;;;1335:1;-1:-1:-1;1328:8:7;;-1:-1:-1;1328:8:7;1287:99;1379:7;;;:::i;:::-;;;1287:99;1225:3;;;:::i;:::-;;;1192:219;;;-1:-1:-1;1421:53:7;;-1:-1:-1;;;1421:53:7;;11976:2:17;1421:53:7;;;11958:21:17;12015:2;11995:18;;;11988:30;12054:34;12034:18;;;12027:62;-1:-1:-1;;;12105:18:17;;;12098:41;12156:19;;1421:53:7;11774:407:17;3902:429:1;3969:1;3945:21;:25;3937:66;;;;-1:-1:-1;;;3937:66:1;;20156:2:17;3937:66:1;;;20138:21:17;20195:2;20175:18;;;20168:30;20234;20214:18;;;20207:58;20282:18;;3937:66:1;19954:352:17;3937:66:1;4097:14;;4033:21;;4009;;-1:-1:-1;;;;;4097:14:1;4145:3;4124:18;4033:21;4140:2;4124:18;:::i;:::-;:24;;;;:::i;:::-;4097:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4192:14:1;;4069:84;;-1:-1:-1;4165:22:1;;-1:-1:-1;;;;;4192:14:1;4240:3;4219:18;:13;4235:2;4219:18;:::i;:::-;:24;;;;:::i;:::-;4192:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4164:84;;;4268:17;:38;;;;;4289:17;4268:38;4260:66;;;;-1:-1:-1;;;4260:66:1;;19812:2:17;4260:66:1;;;19794:21:17;19851:2;19831:18;;;19824:30;-1:-1:-1;;;19870:18:17;;;19863:45;19925:18;;4260:66:1;19610:339:17;3807:178:6;3939:39;3956:4;3962:2;3966:7;3939:39;;;;;;;;;;;;:16;:39::i;2100:339:7:-;2182:13;2207;2223:20;2234:7;2223:9;:20::i;:::-;2207:36;;2253:20;2288:8;2276:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2276:22:7;;2253:45;;2313:6;2308:102;2325:8;2321:1;:12;2308:102;;;2366:33;2387:7;2396:1;2366:19;:33::i;:::-;2354:6;2361:1;2354:9;;;;;;;;:::i;:::-;;;;;;;;;;:45;2335:3;;;:::i;:::-;;;2308:102;;;-1:-1:-1;2426:6:7;2100:339;-1:-1:-1;;;2100:339:7:o;453:114:3:-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;532:16:3;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:30;;-1:-1:-1;;532:30:3::1;::::0;::::1;;::::0;;;::::1;::::0;;453:114::o;3596:80:1:-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1038:6;;-1:-1:-1;;;;;1038:6:14;3641:30:1::1;2631:203:::0;276:10:3;265:22;;;;:10;:22;;;;;;;;257:52;;;;-1:-1:-1;;;257:52:3;;;;;;;:::i;:::-;2723:16:1::1;::::0;::::1;;:37;;::::0;::::1;;;;2714:73;;;::::0;-1:-1:-1;;;2714:73:1;;19463:2:17;2714:73:1::1;::::0;::::1;19445:21:17::0;19502:2;19482:18;;;19475:30;-1:-1:-1;;;19521:18:17;;;19514:50;19581:18;;2714:73:1::1;19261:344:17::0;2714:73:1::1;2793:16;:36:::0;;-1:-1:-1;;2793:36:1::1;::::0;::::1;;::::0;;;::::1;::::0;;2631:203::o;548:279:7:-;652:4;672:6;668:131;680:19;;;668:131;;;750:7;-1:-1:-1;;;;;724:33:7;:7;733:8;;742:1;733:11;;;;;;;:::i;:::-;;;;;;;724:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;724:22:7;:33;720:68;;783:5;776:12;;;;;720:68;701:3;;;:::i;:::-;;;668:131;;;;816:4;809:11;;548:279;;;;;;:::o;1487:197::-;1561:4;1593:13;:11;:13::i;:::-;1585:5;:21;1577:78;;;;-1:-1:-1;;;1577:78:7;;21750:2:17;1577:78:7;;;21732:21:17;21789:2;21769:18;;;21762:30;21828:34;21808:18;;;21801:62;-1:-1:-1;;;21879:18:17;;;21872:42;21931:19;;1577:78:7;21548:408:17;1577:78:7;-1:-1:-1;1672:5:7;1487:197::o;2838:105:1:-;276:10:3;265:22;;;;:10;:22;;;;;;;;257:52;;;;-1:-1:-1;;;257:52:3;;;;;;;:::i;:::-;2914:24:1::1;:14;2931:7:::0;;2914:24:::1;:::i;1605:232:6:-:0;1674:7;1693:13;1709:7;1717;1709:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1709:16:6;;-1:-1:-1;1743:19:6;1735:73;;;;-1:-1:-1;;;1735:73:6;;17036:2:17;1735:73:6;;;17018:21:17;17075:2;17055:18;;;17048:30;17114:34;17094:18;;;17087:62;-1:-1:-1;;;17165:18:17;;;17158:39;17214:19;;1735:73:6;16834:405:17;370:82:15;1038:6:14;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;431:7:15::1;:16:::0;;-1:-1:-1;;;;;;431:16:15::1;-1:-1:-1::0;;;;;431:16:15;;;::::1;::::0;;;::::1;::::0;;370:82::o;1166:327:6:-;1238:4;-1:-1:-1;;;;;1262:19:6;;1254:74;;;;-1:-1:-1;;;1254:74:6;;16625:2:17;1254:74:6;;;16607:21:17;16664:2;16644:18;;;16637:30;16703:34;16683:18;;;16676:62;-1:-1:-1;;;16754:18:17;;;16747:40;16804:19;;1254:74:6;16423:406:17;1254:74:6;1339:10;1364:6;1359:106;1376:7;:14;1372:18;;1359:106;;;1422:7;1430:1;1422:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1413:19:6;;;1422:10;;1413:19;1409:45;;;1447:7;;;:::i;:::-;;;1409:45;1392:3;;;:::i;:::-;;;1359:106;;;-1:-1:-1;1481:5:6;1166:327;-1:-1:-1;;1166:327:6:o;1598:92:14:-;1038:6;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;276:90:15:-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;345:16:15::1;:7;355:6:::0;;345:16:::1;:::i;2018:609:1:-:0;276:10:3;265:22;;;;:10;:22;;;;;;;;257:52;;;;-1:-1:-1;;;257:52:3;;;;;;;:::i;:::-;2138:35:1;;::::1;2130:97;;;::::0;-1:-1:-1;;;2130:97:1;;20915:2:17;2130:97:1::1;::::0;::::1;20897:21:17::0;20954:2;20934:18;;;20927:30;20993:34;20973:18;;;20966:62;-1:-1:-1;;;21044:18:17;;;21037:46;21100:19;;2130:97:1::1;20713:412:17::0;2130:97:1::1;2234:18;2258:11:::0;2272:13:::1;:11;:13::i;:::-;2258:27;;2295:6;2291:80;2303:19:::0;;::::1;2291:80;;;2353:8;;2362:1;2353:11;;;;;;;:::i;:::-;;;;;;;2336:28;;;;;:::i;:::-;::::0;-1:-1:-1;2324:3:1::1;::::0;::::1;:::i;:::-;;;2291:80;;;-1:-1:-1::0;2411:15:1::1;::::0;2385:22:::1;2394:13:::0;2385:6;:22:::1;:::i;:::-;:41;;2376:79;;;::::0;-1:-1:-1;;;2376:79:1;;15086:2:17;2376:79:1::1;::::0;::::1;15068:21:17::0;15125:2;15105:18;;;15098:30;-1:-1:-1;;;15144:18:17;;;15137:53;15207:18;;2376:79:1::1;14884:347:17::0;2376:79:1::1;2461:20;;;2492:6;2488:135;2500:20:::0;;::::1;2488:135;;;2538:6;2534:83;2550:8;;2559:1;2550:11;;;;;;;:::i;:::-;;;;;;;2546:1;:15;2534:83;;;2577:31;2584:9;;2594:1;2584:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2598:8:::0;::::1;::::0;::::1;:::i;:::-;;;2577:5;:31::i;:::-;2563:3;::::0;::::1;:::i;:::-;;;2534:83;;;-1:-1:-1::0;2522:3:1::1;::::0;::::1;:::i;:::-;;;2488:135;;;;2124:503;;2018:609:::0;;;;:::o;2947:645::-;276:10:3;265:22;;;;:10;:22;;;;;;;;257:52;;;;-1:-1:-1;;;257:52:3;;;;;;;:::i;:::-;3129:14:1::1;3112:13;;:31;;:70;;;;3166:16;3147:15;;:35;;3112:70;:99;;;;3205:6;3186:15;;:25;;3112:99;:136;;;-1:-1:-1::0;3215:14:1::1;::::0;-1:-1:-1;;;;;3215:33:1;;::::1;:14:::0;::::1;:33;;3112:136;:173;;;-1:-1:-1::0;3252:14:1::1;::::0;-1:-1:-1;;;;;3252:33:1;;::::1;:14:::0;::::1;:33;;3112:173;3103:209;;;::::0;-1:-1:-1;;;3103:209:1;;11626:2:17;3103:209:1::1;::::0;::::1;11608:21:17::0;11665:2;11645:18;;;11638:30;-1:-1:-1;;;11684:18:17;;;11677:51;11745:18;;3103:209:1::1;11424:345:17::0;3103:209:1::1;3346:13;:11;:13::i;:::-;3326:16;:33;;3318:86;;;::::0;-1:-1:-1;;;3318:86:1;;13568:2:17;3318:86:1::1;::::0;::::1;13550:21:17::0;13607:2;13587:18;;;13580:30;13646:34;13626:18;;;13619:62;-1:-1:-1;;;13697:18:17;;;13690:37;13744:19;;3318:86:1::1;13366:403:17::0;3318:86:1::1;3411:13;:30:::0;;;;3447:15:::1;:34:::0;;;;3487:15:::1;:24:::0;3517:14:::1;:32:::0;;-1:-1:-1;;;;;3517:32:1;;::::1;-1:-1:-1::0;;;;;;3517:32:1;;::::1;;::::0;;;3555:14:::1;:32:::0;;;;;::::1;::::0;::::1;;::::0;;2947:645::o;2149:104:6:-;2207:13;2239:7;2232:14;;;;;:::i;1682:255:1:-;276:10:3;265:22;;;;:10;:22;;;;;;;;257:52;;;;-1:-1:-1;;;257:52:3;;;;;;;:::i;:::-;1786:6:1::1;1782:151;1794:19:::0;;::::1;1782:151;;;1863:7;-1:-1:-1::0;;;;;1837:33:1::1;:7;1846:8;;1855:1;1846:11;;;;;;;:::i;:::-;;;;;;;1837:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;1837:22:1::1;:33;1828:70;;;::::0;-1:-1:-1;;;1828:70:1;;13976:2:17;1828:70:1::1;::::0;::::1;13958:21:17::0;14015:2;13995:18;;;13988:30;-1:-1:-1;;;14034:18:17;;;14027:52;14096:18;;1828:70:1::1;13774:346:17::0;1828:70:1::1;1906:20;1913:8;;1922:1;1913:11;;;;;;;:::i;:::-;;;;;;;1906:5;:20::i;:::-;1815:3;::::0;::::1;:::i;:::-;;;1782:151;;;;1682:255:::0;;;:::o;1175:503::-;1238:16;;;;1229:79;;;;-1:-1:-1;;;1229:79:1;;19046:2:17;1229:79:1;;;19028:21:17;19085:2;19065:18;;;19058:30;19124:34;19104:18;;;19097:62;-1:-1:-1;;;19175:18:17;;;19168:46;19231:19;;1229:79:1;18844:412:17;1229:79:1;1335:13;;1323:8;:25;;1314:85;;;;-1:-1:-1;;;1314:85:1;;22163:2:17;1314:85:1;;;22145:21:17;22202:2;22182:18;;;22175:30;22241:34;22221:18;;;22214:62;-1:-1:-1;;;22292:18:17;;;22285:43;22345:19;;1314:85:1;21961:409:17;1314:85:1;1445:8;1427:15;;:26;;;;:::i;:::-;1414:9;:39;;1405:74;;;;-1:-1:-1;;;1405:74:1;;15851:2:17;1405:74:1;;;15833:21:17;15890:2;15870:18;;;15863:30;-1:-1:-1;;;15909:18:17;;;15902:50;15969:18;;1405:74:1;15649:344:17;1405:74:1;1486:11;1500:13;:11;:13::i;:::-;1549:15;;1486:27;;-1:-1:-1;1528:17:1;1537:8;1486:27;1528:17;:::i;:::-;:36;;1519:74;;;;-1:-1:-1;;;1519:74:1;;15086:2:17;1519:74:1;;;15068:21:17;15125:2;15105:18;;;15098:30;-1:-1:-1;;;15144:18:17;;;15137:53;15207:18;;1519:74:1;14884:347:17;1519:74:1;1604:6;1600:74;1616:8;1612:1;:12;1600:74;;;1638:29;1645:10;1657:8;;;;:::i;:::-;;;1638:5;:29::i;:::-;1626:3;;;:::i;:::-;;;1600:74;;3178:291:6;-1:-1:-1;;;;;3282:24:6;;666:10:2;3282:24:6;;3274:62;;;;-1:-1:-1;;;3274:62:6;;14732:2:17;3274:62:6;;;14714:21:17;14771:2;14751:18;;;14744:30;14810:27;14790:18;;;14783:55;14855:18;;3274:62:6;14530:349:17;3274:62:6;666:10:2;3346:32:6;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3346:42:6;;;;;;;;;;;;:53;;-1:-1:-1;;3346:53:6;;;;;;;;;;3414:48;;10803:41:17;;;3346:42:6;;666:10:2;3414:48:6;;10776:18:17;3414:48:6;;;;;;;3178:291;;:::o;1853:241:7:-;1982:6;1978:110;1990:19;;;1978:110;;;2030:47;2048:4;2054:2;2058:8;;2067:1;2058:11;;;;;;;:::i;:::-;;;;;;;2071:4;;2030:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2030:16:7;;-1:-1:-1;;;2030:47:7:i;:::-;2011:3;;;:::i;:::-;;;1978:110;;3991:317:6;4157:41;666:10:2;4190:7:6;4157:18;:41::i;:::-;4149:103;;;;-1:-1:-1;;;4149:103:6;;;;;;;:::i;:::-;4262:39;4276:4;4282:2;4286:7;4295:5;4262:13;:39::i;923:248:1:-;995:13;1024:16;1032:7;1024;:16::i;:::-;1016:76;;;;-1:-1:-1;;;1016:76:1;;18630:2:17;1016:76:1;;;18612:21:17;18669:2;18649:18;;;18642:30;18708:34;18688:18;;;18681:62;-1:-1:-1;;;18759:18:17;;;18752:45;18814:19;;1016:76:1;18428:411:17;1016:76:1;1129:14;1145:18;:7;:16;:18::i;:::-;1112:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1098:68;;923:248;;;:::o;3680:218::-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;3771:14:1::1;::::0;:53:::1;::::0;3736:30:::1;::::0;-1:-1:-1;;;;;3771:14:1::1;::::0;3798:21:::1;::::0;3736:30;3771:53;3736:30;3771:53;3798:21;3771:14;:53:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3735:89;;;3838:25;3830:63;;;::::0;-1:-1:-1;;;3830:63:1;;12807:2:17;3830:63:1::1;::::0;::::1;12789:21:17::0;12846:2;12826:18;;;12819:30;12885:27;12865:18;;;12858:55;12930:18;;3830:63:1::1;12605:349:17::0;3830:63:1::1;3729:169;3680:218::o:0;571:158:3:-;1038:6:14;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;656:20:3;::::1;;::::0;;;:10:::1;:20;::::0;;;;:27;;-1:-1:-1;;656:27:3::1;679:4;656:27;::::0;;689:35:::1;667:8:::0;689:23:::1;:35::i;1843:300:6:-:0;1945:4;-1:-1:-1;;;;;;1980:40:6;;-1:-1:-1;;;1980:40:6;;:104;;-1:-1:-1;;;;;;;2036:48:6;;-1:-1:-1;;;2036:48:6;1980:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:5;;;2100:36:6;763:155:5;5737:150:6;5832:7;:14;5799:4;;5822:24;;:58;;;;;5878:1;-1:-1:-1;;;;;5850:30:6;:7;5858;5850:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;5850:16:6;:30;;5815:65;5737:150;-1:-1:-1;;5737:150:6:o;4330:169::-;4401:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;4401:29:6;-1:-1:-1;;;;;4401:29:6;;;;;;;;:24;;4454;4401;4454:15;:24::i;:::-;-1:-1:-1;;;;;4445:47:6;;;;;;;;;;;4330:169;;:::o;5893:342::-;5983:4;6007:16;6015:7;6007;:16::i;:::-;5999:73;;;;-1:-1:-1;;;5999:73:6;;15438:2:17;5999:73:6;;;15420:21:17;15477:2;15457:18;;;15450:30;15516:34;15496:18;;;15489:62;-1:-1:-1;;;15567:18:17;;;15560:42;15619:19;;5999:73:6;15236:408:17;5999:73:6;6082:13;6098:24;6114:7;6098:15;:24::i;:::-;6082:40;;6151:5;-1:-1:-1;;;;;6140:16:6;:7;-1:-1:-1;;;;;6140:16:6;;:51;;;;6184:7;-1:-1:-1;;;;;6160:31:6;:20;6172:7;6160:11;:20::i;:::-;-1:-1:-1;;;;;6160:31:6;;6140:51;:87;;;-1:-1:-1;;;;;;3130:25:6;;;3107:4;3130:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;6195:32;6132:96;5893:342;-1:-1:-1;;;;5893:342:6:o;7415:499::-;7567:4;-1:-1:-1;;;;;7539:32:6;:24;7555:7;7539:15;:24::i;:::-;-1:-1:-1;;;;;7539:32:6;;7531:86;;;;-1:-1:-1;;;7531:86:6;;18220:2:17;7531:86:6;;;18202:21:17;18259:2;18239:18;;;18232:30;18298:34;18278:18;;;18271:62;-1:-1:-1;;;18349:18:17;;;18342:39;18398:19;;7531:86:6;18018:405:17;7531:86:6;-1:-1:-1;;;;;7635:16:6;;7627:65;;;;-1:-1:-1;;;7627:65:6;;14327:2:17;7627:65:6;;;14309:21:17;14366:2;14346:18;;;14339:30;14405:34;14385:18;;;14378:62;-1:-1:-1;;;14456:18:17;;;14449:34;14500:19;;7627:65:6;14125:400:17;7627:65:6;7703:39;7724:4;7730:2;7734:7;7703:20;:39::i;:::-;7804:29;7821:1;7825:7;7804:8;:29::i;:::-;7862:2;7843:7;7851;7843:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;7843:21:6;-1:-1:-1;;;;;7843:21:6;;;;;;7880:27;;7899:7;;7880:27;;;;;;;;;;7843:16;7880:27;7415:499;;;:::o;2034:169:14:-;2108:6;;;-1:-1:-1;;;;;2124:17:14;;;-1:-1:-1;;;;;;2124:17:14;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;4829:184:1:-;4894:47;4924:1;4928:2;4932:7;4894:20;:47::i;:::-;4948:7;:16;;;;;;;-1:-1:-1;4948:16:1;;;;;;;-1:-1:-1;;;;;;4948:16:1;-1:-1:-1;;;;;4948:16:1;;;;;;;;4975:33;;5000:7;;-1:-1:-1;4975:33:1;;-1:-1:-1;;4975:33:1;4829:184;;:::o;4537:288::-;4605:12;4620:16;4628:7;4620;:16::i;:::-;4605:31;;4642:26;4651:7;1038:6:14;;-1:-1:-1;;;;;1038:6:14;;966:85;4651:7:1;4660;4642:8;:26::i;:::-;4674:49;4696:4;4710:1;4714:7;4674:20;:49::i;:::-;4732:7;;4730:9;;;;;:::i;:::-;;;;;;;;4772:1;4745:7;4753;4745:16;;;;;;;;:::i;:::-;;;;;;;;;:29;;-1:-1:-1;;;;;;4745:29:1;-1:-1:-1;;;;;4745:29:1;;;;;;4785:35;;4812:7;;4785:35;;;;;4745:16;;4785:35;4584:241;4537:288;:::o;7105:304:6:-;7253:28;7263:4;7269:2;7273:7;7253:9;:28::i;:::-;7299:48;7322:4;7328:2;7332:7;7341:5;7299:22;:48::i;:::-;7291:111;;;;-1:-1:-1;;;7291:111:6;;;;;;;:::i;275:703:16:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:16;;;;;;;;;;;;-1:-1:-1;;;574:10:16;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:16;;-1:-1:-1;720:2:16;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:16;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:16;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:16;;;;;;;;-1:-1:-1;919:11:16;928:2;919:11;;:::i;:::-;;;791:150;;1839:189:14;1038:6;;-1:-1:-1;;;;;1038:6:14;666:10:2;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:14;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:14;;13161:2:17;1919:73:14::1;::::0;::::1;13143:21:17::0;13200:2;13180:18;;;13173:30;13239:34;13219:18;;;13212:62;-1:-1:-1;;;13290:18:17;;;13283:36;13336:19;;1919:73:14::1;12959:402:17::0;1919:73:14::1;2002:19;2012:8;2002:9;:19::i;4335:198:1:-:0;-1:-1:-1;;;;;4433:18:1;;;4429:48;;-1:-1:-1;;;;;4462:15:1;;;;;;:9;:15;;;;;4460:17;;4462:15;;;4460:17;;;:::i;:::-;;;;-1:-1:-1;4429:48:1;-1:-1:-1;;;;;4488:16:1;;;4484:44;;-1:-1:-1;;;;;4515:13:1;;;;;;:9;:13;;;;;4513:15;;4515:13;;;4513:15;;;:::i;:::-;;;;-1:-1:-1;4335:198:1;;;:::o;4956:775:6:-;5103:4;-1:-1:-1;;;;;5123:13:6;;1034:20:0;1080:8;5119:606:6;;5158:72;;-1:-1:-1;;;5158:72:6;;-1:-1:-1;;;;;5158:36:6;;;;;:72;;666:10:2;;5209:4:6;;5215:7;;5224:5;;5158:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5158:72:6;;;;;;;;-1:-1:-1;;5158:72:6;;;;;;;;;;;;:::i;:::-;;;5154:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5397:13:6;;5393:266;;5439:60;;-1:-1:-1;;;5439:60:6;;;;;;;:::i;5393:266::-;5611:6;5605:13;5596:6;5592:2;5588:15;5581:38;5154:519;-1:-1:-1;;;;;;5280:51:6;-1:-1:-1;;;5280:51:6;;-1:-1:-1;5273:58:6;;5119:606;-1:-1:-1;5710:4:6;4956:775;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:17;82:20;;-1:-1:-1;;;;;131:31:17;;121:42;;111:70;;177:1;174;167:12;192:367;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:17;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:160::-;629:20;;685:13;;678:21;668:32;;658:60;;714:1;711;704:12;729:347;780:8;790:6;844:3;837:4;829:6;825:17;821:27;811:55;;862:1;859;852:12;811:55;-1:-1:-1;885:20:17;;928:18;917:30;;914:50;;;960:1;957;950:12;914:50;997:4;989:6;985:17;973:29;;1049:3;1042:4;1033:6;1025;1021:19;1017:30;1014:39;1011:59;;;1066:1;1063;1056:12;1081:186;1140:6;1193:2;1181:9;1172:7;1168:23;1164:32;1161:52;;;1209:1;1206;1199:12;1161:52;1232:29;1251:9;1232:29;:::i;1272:260::-;1340:6;1348;1401:2;1389:9;1380:7;1376:23;1372:32;1369:52;;;1417:1;1414;1407:12;1369:52;1440:29;1459:9;1440:29;:::i;:::-;1430:39;;1488:38;1522:2;1511:9;1507:18;1488:38;:::i;:::-;1478:48;;1272:260;;;;;:::o;1537:894::-;1661:6;1669;1677;1685;1693;1701;1754:3;1742:9;1733:7;1729:23;1725:33;1722:53;;;1771:1;1768;1761:12;1722:53;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1931:2;1920:9;1916:18;1903:32;1954:18;1995:2;1987:6;1984:14;1981:34;;;2011:1;2008;2001:12;1981:34;2050:70;2112:7;2103:6;2092:9;2088:22;2050:70;:::i;:::-;2139:8;;-1:-1:-1;2024:96:17;-1:-1:-1;2227:2:17;2212:18;;2199:32;;-1:-1:-1;2243:16:17;;;2240:36;;;2272:1;2269;2262:12;2240:36;;2311:60;2363:7;2352:8;2341:9;2337:24;2311:60;:::i;:::-;1537:894;;;;-1:-1:-1;1537:894:17;;-1:-1:-1;1537:894:17;;2390:8;;1537:894;-1:-1:-1;;;1537:894:17:o;2436:328::-;2513:6;2521;2529;2582:2;2570:9;2561:7;2557:23;2553:32;2550:52;;;2598:1;2595;2588:12;2550:52;2621:29;2640:9;2621:29;:::i;:::-;2611:39;;2669:38;2703:2;2692:9;2688:18;2669:38;:::i;:::-;2659:48;;2754:2;2743:9;2739:18;2726:32;2716:42;;2436:328;;;;;:::o;2769:1138::-;2864:6;2872;2880;2888;2941:3;2929:9;2920:7;2916:23;2912:33;2909:53;;;2958:1;2955;2948:12;2909:53;2981:29;3000:9;2981:29;:::i;:::-;2971:39;;3029:38;3063:2;3052:9;3048:18;3029:38;:::i;:::-;3019:48;;3114:2;3103:9;3099:18;3086:32;3076:42;;3169:2;3158:9;3154:18;3141:32;3192:18;3233:2;3225:6;3222:14;3219:34;;;3249:1;3246;3239:12;3219:34;3287:6;3276:9;3272:22;3262:32;;3332:7;3325:4;3321:2;3317:13;3313:27;3303:55;;3354:1;3351;3344:12;3303:55;3390:2;3377:16;3412:2;3408;3405:10;3402:36;;;3418:18;;:::i;:::-;3493:2;3487:9;3461:2;3547:13;;-1:-1:-1;;3543:22:17;;;3567:2;3539:31;3535:40;3523:53;;;3591:18;;;3611:22;;;3588:46;3585:72;;;3637:18;;:::i;:::-;3677:10;3673:2;3666:22;3712:2;3704:6;3697:18;3752:7;3747:2;3742;3738;3734:11;3730:20;3727:33;3724:53;;;3773:1;3770;3763:12;3724:53;3829:2;3824;3820;3816:11;3811:2;3803:6;3799:15;3786:46;3874:1;3869:2;3864;3856:6;3852:15;3848:24;3841:35;3895:6;3885:16;;;;;;;2769:1138;;;;;;;:::o;3912:511::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4195:2;4184:9;4180:18;4167:32;4222:18;4214:6;4211:30;4208:50;;;4254:1;4251;4244:12;4208:50;4293:70;4355:7;4346:6;4335:9;4331:22;4293:70;:::i;:::-;3912:511;;4382:8;;-1:-1:-1;4267:96:17;;-1:-1:-1;;;;3912:511:17:o;4428:254::-;4493:6;4501;4554:2;4542:9;4533:7;4529:23;4525:32;4522:52;;;4570:1;4567;4560:12;4522:52;4593:29;4612:9;4593:29;:::i;:::-;4583:39;;4641:35;4672:2;4661:9;4657:18;4641:35;:::i;4687:254::-;4755:6;4763;4816:2;4804:9;4795:7;4791:23;4787:32;4784:52;;;4832:1;4829;4822:12;4784:52;4855:29;4874:9;4855:29;:::i;:::-;4845:39;4931:2;4916:18;;;;4903:32;;-1:-1:-1;;;4687:254:17:o;4946:773::-;5068:6;5076;5084;5092;5145:2;5133:9;5124:7;5120:23;5116:32;5113:52;;;5161:1;5158;5151:12;5113:52;5201:9;5188:23;5230:18;5271:2;5263:6;5260:14;5257:34;;;5287:1;5284;5277:12;5257:34;5326:70;5388:7;5379:6;5368:9;5364:22;5326:70;:::i;:::-;5415:8;;-1:-1:-1;5300:96:17;-1:-1:-1;5503:2:17;5488:18;;5475:32;;-1:-1:-1;5519:16:17;;;5516:36;;;5548:1;5545;5538:12;5516:36;;5587:72;5651:7;5640:8;5629:9;5625:24;5587:72;:::i;:::-;4946:773;;;;-1:-1:-1;5678:8:17;-1:-1:-1;;;;4946:773:17:o;5724:180::-;5780:6;5833:2;5821:9;5812:7;5808:23;5804:32;5801:52;;;5849:1;5846;5839:12;5801:52;5872:26;5888:9;5872:26;:::i;5909:245::-;5967:6;6020:2;6008:9;5999:7;5995:23;5991:32;5988:52;;;6036:1;6033;6026:12;5988:52;6075:9;6062:23;6094:30;6118:5;6094:30;:::i;6159:249::-;6228:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:52;;;6297:1;6294;6287:12;6249:52;6329:9;6323:16;6348:30;6372:5;6348:30;:::i;6413:410::-;6484:6;6492;6545:2;6533:9;6524:7;6520:23;6516:32;6513:52;;;6561:1;6558;6551:12;6513:52;6601:9;6588:23;6634:18;6626:6;6623:30;6620:50;;;6666:1;6663;6656:12;6620:50;6705:58;6755:7;6746:6;6735:9;6731:22;6705:58;:::i;:::-;6782:8;;6679:84;;-1:-1:-1;6413:410:17;-1:-1:-1;;;;6413:410:17:o;6828:180::-;6887:6;6940:2;6928:9;6919:7;6915:23;6911:32;6908:52;;;6956:1;6953;6946:12;6908:52;-1:-1:-1;6979:23:17;;6828:180;-1:-1:-1;6828:180:17:o;7013:466::-;7108:6;7116;7124;7132;7140;7193:3;7181:9;7172:7;7168:23;7164:33;7161:53;;;7210:1;7207;7200:12;7161:53;7246:9;7233:23;7223:33;;7303:2;7292:9;7288:18;7275:32;7265:42;;7354:2;7343:9;7339:18;7326:32;7316:42;;7377:38;7411:2;7400:9;7396:18;7377:38;:::i;:::-;7367:48;;7434:39;7468:3;7457:9;7453:19;7434:39;:::i;:::-;7424:49;;7013:466;;;;;;;;:::o;7484:257::-;7525:3;7563:5;7557:12;7590:6;7585:3;7578:19;7606:63;7662:6;7655:4;7650:3;7646:14;7639:4;7632:5;7628:16;7606:63;:::i;:::-;7723:2;7702:15;-1:-1:-1;;7698:29:17;7689:39;;;;7730:4;7685:50;;7484:257;-1:-1:-1;;7484:257:17:o;7746:185::-;7788:3;7826:5;7820:12;7841:52;7886:6;7881:3;7874:4;7867:5;7863:16;7841:52;:::i;:::-;7909:16;;;;;7746:185;-1:-1:-1;;7746:185:17:o;7936:1174::-;8112:3;8141:1;8174:6;8168:13;8204:3;8226:1;8254:9;8250:2;8246:18;8236:28;;8314:2;8303:9;8299:18;8336;8326:61;;8380:4;8372:6;8368:17;8358:27;;8326:61;8406:2;8454;8446:6;8443:14;8423:18;8420:38;8417:165;;;-1:-1:-1;;;8481:33:17;;8537:4;8534:1;8527:15;8567:4;8488:3;8555:17;8417:165;8598:18;8625:104;;;;8743:1;8738:320;;;;8591:467;;8625:104;-1:-1:-1;;8658:24:17;;8646:37;;8703:16;;;;-1:-1:-1;8625:104:17;;8738:320;22630:1;22623:14;;;22667:4;22654:18;;8833:1;8847:165;8861:6;8858:1;8855:13;8847:165;;;8939:14;;8926:11;;;8919:35;8982:16;;;;8876:10;;8847:165;;;8851:3;;9041:6;9036:3;9032:16;9025:23;;8591:467;;;;;;;9074:30;9100:3;9092:6;9074:30;:::i;:::-;9067:37;7936:1174;-1:-1:-1;;;;;7936:1174:17:o;9533:488::-;-1:-1:-1;;;;;9802:15:17;;;9784:34;;9854:15;;9849:2;9834:18;;9827:43;9901:2;9886:18;;9879:34;;;9949:3;9944:2;9929:18;;9922:31;;;9727:4;;9970:45;;9995:19;;9987:6;9970:45;:::i;:::-;9962:53;9533:488;-1:-1:-1;;;;;;9533:488:17:o;10026:632::-;10197:2;10249:21;;;10319:13;;10222:18;;;10341:22;;;10168:4;;10197:2;10420:15;;;;10394:2;10379:18;;;10168:4;10463:169;10477:6;10474:1;10471:13;10463:169;;;10538:13;;10526:26;;10607:15;;;;10572:12;;;;10499:1;10492:9;10463:169;;;-1:-1:-1;10649:3:17;;10026:632;-1:-1:-1;;;;;;10026:632:17:o;10855:219::-;11004:2;10993:9;10986:21;10967:4;11024:44;11064:2;11053:9;11049:18;11041:6;11024:44;:::i;11079:340::-;11281:2;11263:21;;;11320:2;11300:18;;;11293:30;-1:-1:-1;;;11354:2:17;11339:18;;11332:46;11410:2;11395:18;;11079:340::o;12186:414::-;12388:2;12370:21;;;12427:2;12407:18;;;12400:30;12466:34;12461:2;12446:18;;12439:62;-1:-1:-1;;;12532:2:17;12517:18;;12510:48;12590:3;12575:19;;12186:414::o;17657:356::-;17859:2;17841:21;;;17878:18;;;17871:30;17937:34;17932:2;17917:18;;17910:62;18004:2;17989:18;;17657:356::o;21130:413::-;21332:2;21314:21;;;21371:2;21351:18;;;21344:30;21410:34;21405:2;21390:18;;21383:62;-1:-1:-1;;;21476:2:17;21461:18;;21454:47;21533:3;21518:19;;21130:413::o;22683:128::-;22723:3;22754:1;22750:6;22747:1;22744:13;22741:39;;;22760:18;;:::i;:::-;-1:-1:-1;22796:9:17;;22683:128::o;22816:120::-;22856:1;22882;22872:35;;22887:18;;:::i;:::-;-1:-1:-1;22921:9:17;;22816:120::o;22941:168::-;22981:7;23047:1;23043;23039:6;23035:14;23032:1;23029:21;23024:1;23017:9;23010:17;23006:45;23003:71;;;23054:18;;:::i;:::-;-1:-1:-1;23094:9:17;;22941:168::o;23114:125::-;23154:4;23182:1;23179;23176:8;23173:34;;;23187:18;;:::i;:::-;-1:-1:-1;23224:9:17;;23114:125::o;23244:258::-;23316:1;23326:113;23340:6;23337:1;23334:13;23326:113;;;23416:11;;;23410:18;23397:11;;;23390:39;23362:2;23355:10;23326:113;;;23457:6;23454:1;23451:13;23448:48;;;-1:-1:-1;;23492:1:17;23474:16;;23467:27;23244:258::o;23507:136::-;23546:3;23574:5;23564:39;;23583:18;;:::i;:::-;-1:-1:-1;;;23619:18:17;;23507:136::o;23648:380::-;23727:1;23723:12;;;;23770;;;23791:61;;23845:4;23837:6;23833:17;23823:27;;23791:61;23898:2;23890:6;23887:14;23867:18;23864:38;23861:161;;;23944:10;23939:3;23935:20;23932:1;23925:31;23979:4;23976:1;23969:15;24007:4;24004:1;23997:15;23861:161;;23648:380;;;:::o;24033:135::-;24072:3;-1:-1:-1;;24093:17:17;;24090:43;;;24113:18;;:::i;:::-;-1:-1:-1;24160:1:17;24149:13;;24033:135::o;24173:112::-;24205:1;24231;24221:35;;24236:18;;:::i;:::-;-1:-1:-1;24270:9:17;;24173:112::o;24290:127::-;24351:10;24346:3;24342:20;24339:1;24332:31;24382:4;24379:1;24372:15;24406:4;24403:1;24396:15;24422:127;24483:10;24478:3;24474:20;24471:1;24464:31;24514:4;24511:1;24504:15;24538:4;24535:1;24528:15;24554:127;24615:10;24610:3;24606:20;24603:1;24596:31;24646:4;24643:1;24636:15;24670:4;24667:1;24660:15;24686:127;24747:10;24742:3;24738:20;24735:1;24728:31;24778:4;24775:1;24768:15;24802:4;24799:1;24792:15;24818:131;-1:-1:-1;;;;;;24892:32:17;;24882:43;;24872:71;;24939:1;24936;24929:12

Swarm Source

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