ETH Price: $3,395.93 (+1.37%)
Gas: 6 Gwei

Token

Sleepy Serums (SRS)
 

Overview

Max Total Supply

196 SRS

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x82708ffad11058a6c711a5264cee790326ff01f9
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:
Serums

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Serums.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


/*
0xSimon_
*/
error InvalidTokenId();
error NotAuthorized();
error SoldOut();
error HasBatchClaimed();
error ZeroContract();
error InsufficientBalance();
error Underpriced();
error MaxMints();
error SaleNotStarted();
error ArraysDontMatch();
error MustBatchClaim();

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";



contract Serums is ERC1155, Ownable {
    using ECDSA for bytes32;
    using Strings for uint;


  /*///////////////////////////////////////
                  VARIABLES
  \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
  string public name;
  string public symbol;

  uint[4] private  maxAmounts = [900,3393,1000,7];
  uint[4] private  wlPrices = [100 ether, .04 ether, .055 ether, 1000 ether];
  uint[4] private publicPrices = [1000 ether,.055 ether,.077 ether, 1000 ether];
  
  
  mapping(address => bool) public hasBatchClaimed;
  mapping(uint => uint) public mintBySerum;
  mapping(address => mapping(uint=>uint)) private wlMints;
  
  address private signer = 0x136E0565d7EffD84F652De7D6F93a5B7c7A54426;
  address public mutantContract;

  bool private wlSaleOpen;
  bool private publicSaleOpen;

  string baseUri = "ipfs://QmWUyx8wrtZTfLMGM8XeGDfhKfe2kVUMF1MbXKUZKH5sDK/";
  string uriSuffix = ".json";
  

  /*///////////////////////////////////////
                  CONSTRUCTOR
  \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
  constructor() ERC1155("") {
    name = "Sleepy Serums";
    symbol = "SRS";
    setBaseURI("ipfs://QmWUyx8wrtZTfLMGM8XeGDfhKfe2kVUMF1MbXKUZKH5sDK/");
   

  }


  /*///////////////////////////////////////
                    MINTING
  \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
  function airdrop(address[] calldata accounts,uint serumId, uint[] calldata amounts) external onlyOwner{
    if(accounts.length != amounts.length) revert ArraysDontMatch();
    for(uint i; i<accounts.length; i++){
      if(mintBySerum[serumId] + amounts[i] > maxAmounts[serumId]) revert SoldOut();
      mintBySerum[serumId] += amounts[i];
      _mint(accounts[i],serumId,amounts[i],"");
    }
  }
  
  function batchClaim(uint[] memory serumIds, uint[] memory claimAmounts, bytes memory signature) external  {
    if(claimAmounts.length != serumIds.length) revert ArraysDontMatch();
    bytes32 hash = keccak256(abi.encodePacked(serumIds,claimAmounts,msg.sender));
    address _signer = hash.toEthSignedMessageHash().recover(signature);
    if(signer != _signer) revert NotAuthorized();
    if(hasBatchClaimed[msg.sender]) revert HasBatchClaimed();
    for(uint i; i< serumIds.length; i++){
        if(mintBySerum[serumIds[i]] + claimAmounts[i] > maxAmounts[serumIds[i]]) revert SoldOut();
        mintBySerum[serumIds[i]] += claimAmounts[i];
      }
      hasBatchClaimed[msg.sender] = true;
      _mintBatch(msg.sender,serumIds,claimAmounts,"");
  }

  function ogBuy(uint serumId,uint amount) external payable {
    if(!hasBatchClaimed[msg.sender]) revert MustBatchClaim();
    if(serumId > 3) revert InvalidTokenId();
    if(msg.value < wlPrices[serumId] * amount) revert Underpriced();
    if(amount + mintBySerum[serumId] > maxAmounts[serumId]) revert SoldOut();
    mintBySerum[serumId] += amount;
    _mint(msg.sender,serumId,amount,"");
  }

  function whitelistMint(uint serumId, uint amount,uint max,bytes memory signature) external payable {
    if(!wlSaleOpen) revert SaleNotStarted();
    bytes32 hash = keccak256(abi.encodePacked(serumId,max,msg.sender));
    if(hash.toEthSignedMessageHash().recover(signature) != signer) revert NotAuthorized();
    if(wlMints[msg.sender][serumId] + amount > max) revert MaxMints();
    if(msg.value <  wlPrices[serumId] * amount) revert Underpriced();
    if(amount + mintBySerum[serumId] > maxAmounts[serumId]) revert SoldOut();

    mintBySerum[serumId] += amount;
    wlMints[msg.sender][serumId] += amount;
    _mint(msg.sender,serumId,amount,"");
  }
  
  function publicMint(uint serumId, uint amount) external payable {
    if(!publicSaleOpen) revert SaleNotStarted();
    if(msg.value < publicPrices[serumId] * amount) revert Underpriced();
    if(serumId >3) revert InvalidTokenId();
    if(mintBySerum[serumId] + amount > maxAmounts[serumId]) revert SoldOut();

    mintBySerum[serumId] += amount;
    _mint(msg.sender,serumId,amount,"");
  }



    /*///////////////////////////////////////
                    BURNING
  \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
  function burnOneForHolder(address holder,uint serumId) external  {
      if(mutantContract == address(0)) revert ZeroContract();
      if(msg.sender != mutantContract) revert NotAuthorized();
      if(balanceOf(holder,serumId) <1) revert InsufficientBalance();
      _burn(holder,serumId,1);
  }



  /*///////////////////////////////////////
                  SETTERS
  \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
 function setMutantContract(address _mutantContract) external onlyOwner{
     mutantContract = _mutantContract;
 }
function setBaseURI(string memory newUri) public onlyOwner {
  baseUri = newUri;
}

  function setWlStatus(bool status) external onlyOwner{
    wlSaleOpen = status;
  }
  function steWlPrices(uint[4] calldata newPrices) external onlyOwner{
    wlPrices = newPrices;
  }
  function setPublicPrices(uint[4] calldata newPrices) external onlyOwner{
    publicPrices = newPrices;
  }
  function setPublicStatus(bool status) external onlyOwner{
    publicSaleOpen = status;
  }

  /*///////////////////////////////////////
                  METDATA
  \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
  function uri(uint _id) public override view returns (string memory) {
    if(_id>3) revert InvalidTokenId();
    return string(abi.encodePacked(baseUri,_id.toString(),uriSuffix));
  }

  function withdraw() external payable onlyOwner{
    (bool os,) = payable(owner()).call{value:address(this).balance}("");
    require(os);
  }

}

File 2 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 5 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 6 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 12 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ArraysDontMatch","type":"error"},{"inputs":[],"name":"HasBatchClaimed","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidTokenId","type":"error"},{"inputs":[],"name":"MaxMints","type":"error"},{"inputs":[],"name":"MustBatchClaim","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"SoldOut","type":"error"},{"inputs":[],"name":"Underpriced","type":"error"},{"inputs":[],"name":"ZeroContract","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"serumId","type":"uint256"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"serumIds","type":"uint256[]"},{"internalType":"uint256[]","name":"claimAmounts","type":"uint256[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"batchClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"serumId","type":"uint256"}],"name":"burnOneForHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasBatchClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintBySerum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mutantContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"serumId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ogBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"serumId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mutantContract","type":"address"}],"name":"setMutantContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[4]","name":"newPrices","type":"uint256[4]"}],"name":"setPublicPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublicStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setWlStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[4]","name":"newPrices","type":"uint256[4]"}],"name":"steWlPrices","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"serumId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052604051806080016040528061038461ffff168152602001610d4161ffff1681526020016103e861ffff168152602001600761ffff1681525060069060046200004e92919062000500565b50604051806080016040528068056bc75e2d6310000068ffffffffffffffffff168152602001668e1bc9bf04000068ffffffffffffffffff16815260200166c3663566a5800068ffffffffffffffffff168152602001683635c9adc5dea0000068ffffffffffffffffff16815250600a906004620000ce9291906200054b565b506040518060800160405280683635c9adc5dea0000068ffffffffffffffffff16815260200166c3663566a5800068ffffffffffffffffff1681526020016701118f178fb4800068ffffffffffffffffff168152602001683635c9adc5dea0000068ffffffffffffffffff16815250600e9060046200014f9291906200054b565b5073136e0565d7effd84f652de7d6f93a5b7c7a54426601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060368152602001620066646036913960179080519060200190620001d69291906200059d565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060189080519060200190620002249291906200059d565b503480156200023257600080fd5b506040518060200160405280600081525062000254816200034160201b60201c565b5062000275620002696200035d60201b60201c565b6200036560201b60201c565b6040518060400160405280600d81526020017f536c6565707920536572756d730000000000000000000000000000000000000081525060049080519060200190620002c29291906200059d565b506040518060400160405280600381526020017f535253000000000000000000000000000000000000000000000000000000000081525060059080519060200190620003109291906200059d565b506200033b60405180606001604052806036815260200162006664603691396200042b60201b60201c565b62000735565b8060029080519060200190620003599291906200059d565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200043b6200035d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000461620004d660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b19062000674565b60405180910390fd5b8060179080519060200190620004d29291906200059d565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b826004810192821562000538579160200282015b8281111562000537578251829061ffff1690559160200191906001019062000514565b5b5090506200054791906200062e565b5090565b82600481019282156200058a579160200282015b8281111562000589578251829068ffffffffffffffffff169055916020019190600101906200055f565b5b5090506200059991906200062e565b5090565b828054620005ab90620006a7565b90600052602060002090601f016020900481019282620005cf57600085556200061b565b82601f10620005ea57805160ff19168380011785556200061b565b828001600101855582156200061b579182015b828111156200061a578251825591602001919060010190620005fd565b5b5090506200062a91906200062e565b5090565b5b80821115620006495760008160009055506001016200062f565b5090565b60006200065c60208362000696565b915062000669826200070c565b602082019050919050565b600060208201905081810360008301526200068f816200064d565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620006c057607f821691505b60208210811415620006d757620006d6620006dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615f1f80620007456000396000f3fe6080604052600436106101c15760003560e01c806365c649a2116100f7578063a22cb46511610095578063e2782e9b11610064578063e2782e9b146105ed578063e985e9c514610618578063f242432a14610655578063f2fde38b1461067e576101c1565b8063a22cb46514610549578063a854784914610572578063b26292b11461059b578063de1e4d50146105c4576101c1565b8063915c7024116100d1578063915c70241461049c57806393c0c6fe146104d957806395d89b411461050257806398ae99a81461052d576101c1565b806365c649a21461043e578063715018a61461045a5780638da5cb5b14610471576101c1565b80632198ffb1116101645780633ccfd60b1161013e5780633ccfd60b146103a55780634e1273f4146103af57806355f804b3146103ec5780635762fccb14610415576101c1565b80632198ffb11461032a57806326b41d7c146103535780632eb2c2d61461037c576101c1565b806306fdde03116101a057806306fdde031461027d5780630e89341c146102a85780631c5b64e2146102e55780631c9f4ae81461030e576101c1565b8062fdd58e146101c657806301ffc9a71461020357806303c9b8ee14610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190614478565b6106a7565b6040516101fa9190615296565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190614692565b610770565b6040516102379190614fb4565b60405180910390f35b34801561024c57600080fd5b5061026760048036038101906102629190614725565b610852565b6040516102749190615296565b60405180910390f35b34801561028957600080fd5b5061029261086a565b60405161029f9190615014565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190614725565b6108f8565b6040516102dc9190615014565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190614669565b61096a565b005b6103286004803603810190610323919061474e565b610a03565b005b34801561033657600080fd5b50610351600480360381019061034c9190614289565b610c1d565b005b34801561035f57600080fd5b5061037a600480360381019061037591906144b4565b610cdd565b005b34801561038857600080fd5b506103a3600480360381019061039e91906142ee565b610fa3565b005b6103ad611044565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061453d565b611140565b6040516103e39190614f5b565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906146e4565b6112f1565b005b34801561042157600080fd5b5061043c60048036038101906104379190614669565b611387565b005b6104586004803603810190610453919061478a565b611420565b005b34801561046657600080fd5b5061046f611791565b005b34801561047d57600080fd5b50610486611819565b6040516104939190614e7e565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190614289565b611843565b6040516104d09190614fb4565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb91906145d2565b611863565b005b34801561050e57600080fd5b50610517611c8e565b6040516105249190615014565b60405180910390f35b6105476004803603810190610542919061474e565b611d1c565b005b34801561055557600080fd5b50610570600480360381019061056b919061443c565b611ef9565b005b34801561057e57600080fd5b5061059960048036038101906105949190614478565b611f0f565b005b3480156105a757600080fd5b506105c260048036038101906105bd91906145a9565b612073565b005b3480156105d057600080fd5b506105eb60048036038101906105e691906145a9565b612104565b005b3480156105f957600080fd5b50610602612195565b60405161060f9190614e7e565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a91906142b2565b6121bb565b60405161064c9190614fb4565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906143ad565b61224f565b005b34801561068a57600080fd5b506106a560048036038101906106a09190614289565b6122f0565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906150b6565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084b575061084a826123e8565b5b9050919050565b60136020528060005260406000206000915090505481565b6004805461087790615642565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390615642565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b505050505081565b60606003821115610935576040517f3f6cc76800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601761094083612452565b601860405160200161095493929190614dd5565b6040516020818303038152906040529050919050565b6109726125ff565b73ffffffffffffffffffffffffffffffffffffffff16610990611819565b73ffffffffffffffffffffffffffffffffffffffff16146109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd906151f6565b60405180910390fd5b80601660156101000a81548160ff02191690831515021790555050565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a86576040517fb980380800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003821115610ac1576040517f3f6cc76800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8360048110610afc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154610b0891906154e7565b341015610b41576040517fd0afc53400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068260048110610b7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154601360008481526020019081526020016000205482610b9c9190615460565b1115610bd4576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601360008481526020019081526020016000206000828254610bf79190615460565b92505081905550610c1933838360405180602001604052806000815250612607565b5050565b610c256125ff565b73ffffffffffffffffffffffffffffffffffffffff16610c43611819565b73ffffffffffffffffffffffffffffffffffffffff1614610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906151f6565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ce56125ff565b73ffffffffffffffffffffffffffffffffffffffff16610d03611819565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d50906151f6565b60405180910390fd5b818190508585905014610d98576040517fe6bbb3c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b85859050811015610f9b5760068460048110610de0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154838383818110610e1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356013600087815260200190815260200160002054610e409190615460565b1115610e78576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b828282818110610eb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135601360008681526020019081526020016000206000828254610eda9190615460565b92505081905550610f88868683818110610f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f329190614289565b85858585818110610f6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560405180602001604052806000815250612607565b8080610f93906156a5565b915050610d9b565b505050505050565b610fab6125ff565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ff15750610ff085610feb6125ff565b6121bb565b5b611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790615176565b60405180910390fd5b61103d858585858561279d565b5050505050565b61104c6125ff565b73ffffffffffffffffffffffffffffffffffffffff1661106a611819565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906151f6565b60405180910390fd5b60006110ca611819565b73ffffffffffffffffffffffffffffffffffffffff16476040516110ed90614e2c565b60006040518083038185875af1925050503d806000811461112a576040519150601f19603f3d011682016040523d82523d6000602084013e61112f565b606091505b505090508061113d57600080fd5b50565b60608151835114611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90615236565b60405180910390fd5b6000835167ffffffffffffffff8111156111c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111f75781602001602082028036833780820191505090505b50905060005b84518110156112e657611290858281518110611242577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611283577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516106a7565b8282815181106112c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806112df906156a5565b90506111fd565b508091505092915050565b6112f96125ff565b73ffffffffffffffffffffffffffffffffffffffff16611317611819565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611364906151f6565b60405180910390fd5b8060179080519060200190611383929190613e8f565b5050565b61138f6125ff565b73ffffffffffffffffffffffffffffffffffffffff166113ad611819565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906151f6565b60405180910390fd5b80601660146101000a81548160ff02191690831515021790555050565b601660149054906101000a900460ff16611466576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084833360405160200161147d93929190614e41565b604051602081830303815290604052805190602001209050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114e9836114db84612afd565b612b2d90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8284601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000888152602001908152602001600020546115939190615460565b11156115cb576040517fc3b708de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600a8660048110611606577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015461161291906154e7565b34101561164b576040517fd0afc53400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068560048110611685577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01546013600087815260200190815260200160002054856116a69190615460565b11156116de576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836013600087815260200190815260200160002060008282546117019190615460565b9250508190555083601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087815260200190815260200160002060008282546117689190615460565b9250508190555061178a33868660405180602001604052806000815250612607565b5050505050565b6117996125ff565b73ffffffffffffffffffffffffffffffffffffffff166117b7611819565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906151f6565b60405180910390fd5b6118176000612b54565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60126020528060005260406000206000915054906101000a900460ff1681565b825182511461189e576040517fe6bbb3c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008383336040516020016118b593929190614da0565b60405160208183030381529060405280519060200120905060006118ea836118dc84612afd565b612b2d90919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611973576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119f7576040517f7d702c7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8551811015611c13576006868281518110611a3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160048110611a7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154858281518110611ab8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160136000898581518110611afd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054611b1e9190615460565b1115611b56576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b848181518110611b8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160136000888481518110611bd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611bf99190615460565b925050819055508080611c0b906156a5565b9150506119fa565b506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c8733868660405180602001604052806000815250612c1a565b5050505050565b60058054611c9b90615642565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc790615642565b8015611d145780601f10611ce957610100808354040283529160200191611d14565b820191906000526020600020905b815481529060010190602001808311611cf757829003601f168201915b505050505081565b601660159054906101000a900460ff16611d62576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e8360048110611d9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154611da991906154e7565b341015611de2576040517fd0afc53400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003821115611e1d576040517f3f6cc76800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068260048110611e57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154816013600085815260200190815260200160002054611e789190615460565b1115611eb0576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601360008481526020019081526020016000206000828254611ed39190615460565b92505081905550611ef533838360405180602001604052806000815250612607565b5050565b611f0b611f046125ff565b8383612e84565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f98576040517f8b8fe7f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201f576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600161202b83836106a7565b1015612063576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206f82826001612ff1565b5050565b61207b6125ff565b73ffffffffffffffffffffffffffffffffffffffff16612099611819565b73ffffffffffffffffffffffffffffffffffffffff16146120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e6906151f6565b60405180910390fd5b80600a906004612100929190613f15565b5050565b61210c6125ff565b73ffffffffffffffffffffffffffffffffffffffff1661212a611819565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612177906151f6565b60405180910390fd5b80600e906004612191929190613f15565b5050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122576125ff565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061229d575061229c856122976125ff565b6121bb565b5b6122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390615116565b60405180910390fd5b6122e9858585858561320e565b5050505050565b6122f86125ff565b73ffffffffffffffffffffffffffffffffffffffff16612316611819565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612363906151f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d3906150d6565b60405180910390fd5b6123e581612b54565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600082141561249a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125fa565b600082905060005b600082146124cc5780806124b5906156a5565b915050600a826124c591906154b6565b91506124a2565b60008167ffffffffffffffff81111561250e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125405781602001600182028036833780820191505090505b5090505b600085146125f3576001826125599190615541565b9150600a856125689190615726565b60306125749190615460565b60f81b8183815181106125b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ec91906154b6565b9450612544565b8093505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90615276565b60405180910390fd5b60006126816125ff565b90506126a28160008761269388613490565b61269c88613490565b87613556565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127019190615460565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161277f9291906152b1565b60405180910390a46127968160008787878761355e565b5050505050565b81518351146127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890615256565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284890615156565b60405180910390fd5b600061285b6125ff565b905061286b818787878787613556565b60005b8451811015612a685760008582815181106128b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106128f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f906151d6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4d9190615460565b9250508190555050505080612a61906156a5565b905061286e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612adf929190614f7d565b60405180910390a4612af5818787878787613745565b505050505050565b600081604051602001612b109190614e06565b604051602081830303815290604052805190602001209050919050565b6000806000612b3c858561392c565b91509150612b49816139af565b819250505092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8190615276565b60405180910390fd5b8151835114612cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc590615256565b60405180910390fd5b6000612cd86125ff565b9050612ce981600087878787613556565b60005b8451811015612dee57838181518110612d2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110612d72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dd49190615460565b925050819055508080612de6906156a5565b915050612cec565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612e66929190614f7d565b60405180910390a4612e7d81600087878787613745565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eea90615216565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe49190614fb4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613058906151b6565b60405180910390fd5b600061306b6125ff565b905061309b8185600061307d87613490565b61308687613490565b60405180602001604052806000815250613556565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015613132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613129906150f6565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516131ff9291906152b1565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590615156565b60405180910390fd5b60006132886125ff565b90506132a881878761329988613490565b6132a288613490565b87613556565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561333f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613336906151d6565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f49190615460565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516134719291906152b1565b60405180910390a461348782888888888861355e565b50505050505050565b60606000600167ffffffffffffffff8111156134d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156135035781602001602082028036833780820191505090505b5090508281600081518110613541577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b61357d8473ffffffffffffffffffffffffffffffffffffffff16613d00565b1561373d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016135c3959493929190614f01565b602060405180830381600087803b1580156135dd57600080fd5b505af192505050801561360e57506040513d601f19601f8201168201806040525081019061360b91906146bb565b60015b6136b45761361a615813565b806308c379a01415613677575061362f615df7565b8061363a5750613679565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366e9190615014565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ab90615056565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373290615076565b60405180910390fd5b505b505050505050565b6137648473ffffffffffffffffffffffffffffffffffffffff16613d00565b15613924578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016137aa959493929190614e99565b602060405180830381600087803b1580156137c457600080fd5b505af19250505080156137f557506040513d601f19601f820116820180604052508101906137f291906146bb565b60015b61389b57613801615813565b806308c379a0141561385e5750613816615df7565b806138215750613860565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138559190615014565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389290615056565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391990615076565b60405180910390fd5b505b505050505050565b60008060418351141561396e5760008060006020860151925060408601519150606086015160001a905061396287828585613d23565b945094505050506139a8565b60408351141561399f576000806020850151915060408501519050613994868383613e30565b9350935050506139a8565b60006002915091505b9250929050565b600060048111156139e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a2d57613cfd565b60016004811115613a67577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613aa0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad890615036565b60405180910390fd5b60026004811115613b1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613b54577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8c90615096565b60405180910390fd5b60036004811115613bcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c08577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4090615136565b60405180910390fd5b600480811115613c82577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613cbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf390615196565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613d5e576000600391509150613e27565b601b8560ff1614158015613d765750601c8560ff1614155b15613d88576000600491509150613e27565b600060018787878760405160008152602001604052604051613dad9493929190614fcf565b6020604051602081039080840390855afa158015613dcf573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e1e57600060019250925050613e27565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613e739190615460565b9050613e8187828885613d23565b935093505050935093915050565b828054613e9b90615642565b90600052602060002090601f016020900481019282613ebd5760008555613f04565b82601f10613ed657805160ff1916838001178555613f04565b82800160010185558215613f04579182015b82811115613f03578251825591602001919060010190613ee8565b5b509050613f119190613f55565b5090565b8260048101928215613f44579160200282015b82811115613f43578235825591602001919060010190613f28565b5b509050613f519190613f55565b5090565b5b80821115613f6e576000816000905550600101613f56565b5090565b6000613f85613f80846152ff565b6152da565b90508083825260208201905082856020860282011115613fa457600080fd5b60005b85811015613fd45781613fba88826140c6565b845260208401935060208301925050600181019050613fa7565b5050509392505050565b6000613ff1613fec8461532b565b6152da565b9050808382526020820190508285602086028201111561401057600080fd5b60005b8581101561404057816140268882614274565b845260208401935060208301925050600181019050614013565b5050509392505050565b600061405d61405884615357565b6152da565b90508281526020810184848401111561407557600080fd5b614080848285615600565b509392505050565b600061409b61409684615388565b6152da565b9050828152602081018484840111156140b357600080fd5b6140be848285615600565b509392505050565b6000813590506140d581615e8d565b92915050565b60008083601f8401126140ed57600080fd5b8235905067ffffffffffffffff81111561410657600080fd5b60208301915083602082028301111561411e57600080fd5b9250929050565b600082601f83011261413657600080fd5b8135614146848260208601613f72565b91505092915050565b60008190508260206004028201111561416757600080fd5b92915050565b60008083601f84011261417f57600080fd5b8235905067ffffffffffffffff81111561419857600080fd5b6020830191508360208202830111156141b057600080fd5b9250929050565b600082601f8301126141c857600080fd5b81356141d8848260208601613fde565b91505092915050565b6000813590506141f081615ea4565b92915050565b60008135905061420581615ebb565b92915050565b60008151905061421a81615ebb565b92915050565b600082601f83011261423157600080fd5b813561424184826020860161404a565b91505092915050565b600082601f83011261425b57600080fd5b813561426b848260208601614088565b91505092915050565b60008135905061428381615ed2565b92915050565b60006020828403121561429b57600080fd5b60006142a9848285016140c6565b91505092915050565b600080604083850312156142c557600080fd5b60006142d3858286016140c6565b92505060206142e4858286016140c6565b9150509250929050565b600080600080600060a0868803121561430657600080fd5b6000614314888289016140c6565b9550506020614325888289016140c6565b945050604086013567ffffffffffffffff81111561434257600080fd5b61434e888289016141b7565b935050606086013567ffffffffffffffff81111561436b57600080fd5b614377888289016141b7565b925050608086013567ffffffffffffffff81111561439457600080fd5b6143a088828901614220565b9150509295509295909350565b600080600080600060a086880312156143c557600080fd5b60006143d3888289016140c6565b95505060206143e4888289016140c6565b94505060406143f588828901614274565b935050606061440688828901614274565b925050608086013567ffffffffffffffff81111561442357600080fd5b61442f88828901614220565b9150509295509295909350565b6000806040838503121561444f57600080fd5b600061445d858286016140c6565b925050602061446e858286016141e1565b9150509250929050565b6000806040838503121561448b57600080fd5b6000614499858286016140c6565b92505060206144aa85828601614274565b9150509250929050565b6000806000806000606086880312156144cc57600080fd5b600086013567ffffffffffffffff8111156144e657600080fd5b6144f2888289016140db565b9550955050602061450588828901614274565b935050604086013567ffffffffffffffff81111561452257600080fd5b61452e8882890161416d565b92509250509295509295909350565b6000806040838503121561455057600080fd5b600083013567ffffffffffffffff81111561456a57600080fd5b61457685828601614125565b925050602083013567ffffffffffffffff81111561459357600080fd5b61459f858286016141b7565b9150509250929050565b6000608082840312156145bb57600080fd5b60006145c98482850161414f565b91505092915050565b6000806000606084860312156145e757600080fd5b600084013567ffffffffffffffff81111561460157600080fd5b61460d868287016141b7565b935050602084013567ffffffffffffffff81111561462a57600080fd5b614636868287016141b7565b925050604084013567ffffffffffffffff81111561465357600080fd5b61465f86828701614220565b9150509250925092565b60006020828403121561467b57600080fd5b6000614689848285016141e1565b91505092915050565b6000602082840312156146a457600080fd5b60006146b2848285016141f6565b91505092915050565b6000602082840312156146cd57600080fd5b60006146db8482850161420b565b91505092915050565b6000602082840312156146f657600080fd5b600082013567ffffffffffffffff81111561471057600080fd5b61471c8482850161424a565b91505092915050565b60006020828403121561473757600080fd5b600061474584828501614274565b91505092915050565b6000806040838503121561476157600080fd5b600061476f85828601614274565b925050602061478085828601614274565b9150509250929050565b600080600080608085870312156147a057600080fd5b60006147ae87828801614274565b94505060206147bf87828801614274565b93505060406147d087828801614274565b925050606085013567ffffffffffffffff8111156147ed57600080fd5b6147f987828801614220565b91505092959194509250565b60006148118383614d4d565b60208301905092915050565b60006148298383614d6b565b60208301905092915050565b61483e81615575565b82525050565b61485561485082615575565b6156ee565b82525050565b6000614866826153de565b614870818561540c565b935061487b836153b9565b8060005b838110156148ac5781516148938882614805565b975061489e836153ff565b92505060018101905061487f565b5085935050505092915050565b60006148c4826153de565b6148ce818561541d565b93506148d9836153b9565b8060005b8381101561490a5781516148f1888261481d565b97506148fc836153ff565b9250506001810190506148dd565b5085935050505092915050565b61492081615587565b82525050565b61492f81615593565b82525050565b61494661494182615593565b615700565b82525050565b6000614957826153e9565b6149618185615428565b935061497181856020860161560f565b61497a81615835565b840191505092915050565b6000614990826153f4565b61499a8185615444565b93506149aa81856020860161560f565b6149b381615835565b840191505092915050565b60006149c9826153f4565b6149d38185615455565b93506149e381856020860161560f565b80840191505092915050565b600081546149fc81615642565b614a068186615455565b94506001821660008114614a215760018114614a3257614a65565b60ff19831686528186019350614a65565b614a3b856153c9565b60005b83811015614a5d57815481890152600182019150602081019050614a3e565b838801955050505b50505092915050565b6000614a7b601883615444565b9150614a8682615860565b602082019050919050565b6000614a9e603483615444565b9150614aa982615889565b604082019050919050565b6000614ac1602883615444565b9150614acc826158d8565b604082019050919050565b6000614ae4601f83615444565b9150614aef82615927565b602082019050919050565b6000614b07601c83615455565b9150614b1282615950565b601c82019050919050565b6000614b2a602b83615444565b9150614b3582615979565b604082019050919050565b6000614b4d602683615444565b9150614b58826159c8565b604082019050919050565b6000614b70602483615444565b9150614b7b82615a17565b604082019050919050565b6000614b93602983615444565b9150614b9e82615a66565b604082019050919050565b6000614bb6602283615444565b9150614bc182615ab5565b604082019050919050565b6000614bd9602583615444565b9150614be482615b04565b604082019050919050565b6000614bfc603283615444565b9150614c0782615b53565b604082019050919050565b6000614c1f602283615444565b9150614c2a82615ba2565b604082019050919050565b6000614c42602383615444565b9150614c4d82615bf1565b604082019050919050565b6000614c65602a83615444565b9150614c7082615c40565b604082019050919050565b6000614c88602083615444565b9150614c9382615c8f565b602082019050919050565b6000614cab600083615439565b9150614cb682615cb8565b600082019050919050565b6000614cce602983615444565b9150614cd982615cbb565b604082019050919050565b6000614cf1602983615444565b9150614cfc82615d0a565b604082019050919050565b6000614d14602883615444565b9150614d1f82615d59565b604082019050919050565b6000614d37602183615444565b9150614d4282615da8565b604082019050919050565b614d56816155e9565b82525050565b614d65816155e9565b82525050565b614d74816155e9565b82525050565b614d8b614d86826155e9565b61571c565b82525050565b614d9a816155f3565b82525050565b6000614dac82866148b9565b9150614db882856148b9565b9150614dc48284614844565b601482019150819050949350505050565b6000614de182866149ef565b9150614ded82856149be565b9150614df982846149ef565b9150819050949350505050565b6000614e1182614afa565b9150614e1d8284614935565b60208201915081905092915050565b6000614e3782614c9e565b9150819050919050565b6000614e4d8286614d7a565b602082019150614e5d8285614d7a565b602082019150614e6d8284614844565b601482019150819050949350505050565b6000602082019050614e936000830184614835565b92915050565b600060a082019050614eae6000830188614835565b614ebb6020830187614835565b8181036040830152614ecd818661485b565b90508181036060830152614ee1818561485b565b90508181036080830152614ef5818461494c565b90509695505050505050565b600060a082019050614f166000830188614835565b614f236020830187614835565b614f306040830186614d5c565b614f3d6060830185614d5c565b8181036080830152614f4f818461494c565b90509695505050505050565b60006020820190508181036000830152614f75818461485b565b905092915050565b60006040820190508181036000830152614f97818561485b565b90508181036020830152614fab818461485b565b90509392505050565b6000602082019050614fc96000830184614917565b92915050565b6000608082019050614fe46000830187614926565b614ff16020830186614d91565b614ffe6040830185614926565b61500b6060830184614926565b95945050505050565b6000602082019050818103600083015261502e8184614985565b905092915050565b6000602082019050818103600083015261504f81614a6e565b9050919050565b6000602082019050818103600083015261506f81614a91565b9050919050565b6000602082019050818103600083015261508f81614ab4565b9050919050565b600060208201905081810360008301526150af81614ad7565b9050919050565b600060208201905081810360008301526150cf81614b1d565b9050919050565b600060208201905081810360008301526150ef81614b40565b9050919050565b6000602082019050818103600083015261510f81614b63565b9050919050565b6000602082019050818103600083015261512f81614b86565b9050919050565b6000602082019050818103600083015261514f81614ba9565b9050919050565b6000602082019050818103600083015261516f81614bcc565b9050919050565b6000602082019050818103600083015261518f81614bef565b9050919050565b600060208201905081810360008301526151af81614c12565b9050919050565b600060208201905081810360008301526151cf81614c35565b9050919050565b600060208201905081810360008301526151ef81614c58565b9050919050565b6000602082019050818103600083015261520f81614c7b565b9050919050565b6000602082019050818103600083015261522f81614cc1565b9050919050565b6000602082019050818103600083015261524f81614ce4565b9050919050565b6000602082019050818103600083015261526f81614d07565b9050919050565b6000602082019050818103600083015261528f81614d2a565b9050919050565b60006020820190506152ab6000830184614d5c565b92915050565b60006040820190506152c66000830185614d5c565b6152d36020830184614d5c565b9392505050565b60006152e46152f5565b90506152f08282615674565b919050565b6000604051905090565b600067ffffffffffffffff82111561531a576153196157e4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615346576153456157e4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615372576153716157e4565b5b61537b82615835565b9050602081019050919050565b600067ffffffffffffffff8211156153a3576153a26157e4565b5b6153ac82615835565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061546b826155e9565b9150615476836155e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154ab576154aa615757565b5b828201905092915050565b60006154c1826155e9565b91506154cc836155e9565b9250826154dc576154db615786565b5b828204905092915050565b60006154f2826155e9565b91506154fd836155e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561553657615535615757565b5b828202905092915050565b600061554c826155e9565b9150615557836155e9565b92508282101561556a57615569615757565b5b828203905092915050565b6000615580826155c9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561562d578082015181840152602081019050615612565b8381111561563c576000848401525b50505050565b6000600282049050600182168061565a57607f821691505b6020821081141561566e5761566d6157b5565b5b50919050565b61567d82615835565b810181811067ffffffffffffffff8211171561569c5761569b6157e4565b5b80604052505050565b60006156b0826155e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156e3576156e2615757565b5b600182019050919050565b60006156f98261570a565b9050919050565b6000819050919050565b600061571582615846565b9050919050565b6000819050919050565b6000615731826155e9565b915061573c836155e9565b92508261574c5761574b615786565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156158325760046000803e61582f600051615853565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015615e0757615e8a565b615e0f6152f5565b60043d036004823e80513d602482011167ffffffffffffffff82111715615e37575050615e8a565b808201805167ffffffffffffffff811115615e555750505050615e8a565b80602083010160043d038501811115615e72575050505050615e8a565b615e8182602001850186615674565b82955050505050505b90565b615e9681615575565b8114615ea157600080fd5b50565b615ead81615587565b8114615eb857600080fd5b50565b615ec48161559d565b8114615ecf57600080fd5b50565b615edb816155e9565b8114615ee657600080fd5b5056fea264697066735822122066ad01b7470ac958fdf31ce6c88d8141039c87ddb32585e7068d29c177062cf864736f6c63430008040033697066733a2f2f516d57557978387772745a54664c4d474d385865474466684b6665326b56554d46314d62584b555a4b483573444b2f

Deployed Bytecode

0x6080604052600436106101c15760003560e01c806365c649a2116100f7578063a22cb46511610095578063e2782e9b11610064578063e2782e9b146105ed578063e985e9c514610618578063f242432a14610655578063f2fde38b1461067e576101c1565b8063a22cb46514610549578063a854784914610572578063b26292b11461059b578063de1e4d50146105c4576101c1565b8063915c7024116100d1578063915c70241461049c57806393c0c6fe146104d957806395d89b411461050257806398ae99a81461052d576101c1565b806365c649a21461043e578063715018a61461045a5780638da5cb5b14610471576101c1565b80632198ffb1116101645780633ccfd60b1161013e5780633ccfd60b146103a55780634e1273f4146103af57806355f804b3146103ec5780635762fccb14610415576101c1565b80632198ffb11461032a57806326b41d7c146103535780632eb2c2d61461037c576101c1565b806306fdde03116101a057806306fdde031461027d5780630e89341c146102a85780631c5b64e2146102e55780631c9f4ae81461030e576101c1565b8062fdd58e146101c657806301ffc9a71461020357806303c9b8ee14610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190614478565b6106a7565b6040516101fa9190615296565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190614692565b610770565b6040516102379190614fb4565b60405180910390f35b34801561024c57600080fd5b5061026760048036038101906102629190614725565b610852565b6040516102749190615296565b60405180910390f35b34801561028957600080fd5b5061029261086a565b60405161029f9190615014565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190614725565b6108f8565b6040516102dc9190615014565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190614669565b61096a565b005b6103286004803603810190610323919061474e565b610a03565b005b34801561033657600080fd5b50610351600480360381019061034c9190614289565b610c1d565b005b34801561035f57600080fd5b5061037a600480360381019061037591906144b4565b610cdd565b005b34801561038857600080fd5b506103a3600480360381019061039e91906142ee565b610fa3565b005b6103ad611044565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061453d565b611140565b6040516103e39190614f5b565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906146e4565b6112f1565b005b34801561042157600080fd5b5061043c60048036038101906104379190614669565b611387565b005b6104586004803603810190610453919061478a565b611420565b005b34801561046657600080fd5b5061046f611791565b005b34801561047d57600080fd5b50610486611819565b6040516104939190614e7e565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190614289565b611843565b6040516104d09190614fb4565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb91906145d2565b611863565b005b34801561050e57600080fd5b50610517611c8e565b6040516105249190615014565b60405180910390f35b6105476004803603810190610542919061474e565b611d1c565b005b34801561055557600080fd5b50610570600480360381019061056b919061443c565b611ef9565b005b34801561057e57600080fd5b5061059960048036038101906105949190614478565b611f0f565b005b3480156105a757600080fd5b506105c260048036038101906105bd91906145a9565b612073565b005b3480156105d057600080fd5b506105eb60048036038101906105e691906145a9565b612104565b005b3480156105f957600080fd5b50610602612195565b60405161060f9190614e7e565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a91906142b2565b6121bb565b60405161064c9190614fb4565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906143ad565b61224f565b005b34801561068a57600080fd5b506106a560048036038101906106a09190614289565b6122f0565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906150b6565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084b575061084a826123e8565b5b9050919050565b60136020528060005260406000206000915090505481565b6004805461087790615642565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390615642565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b505050505081565b60606003821115610935576040517f3f6cc76800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601761094083612452565b601860405160200161095493929190614dd5565b6040516020818303038152906040529050919050565b6109726125ff565b73ffffffffffffffffffffffffffffffffffffffff16610990611819565b73ffffffffffffffffffffffffffffffffffffffff16146109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd906151f6565b60405180910390fd5b80601660156101000a81548160ff02191690831515021790555050565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a86576040517fb980380800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003821115610ac1576040517f3f6cc76800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8360048110610afc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154610b0891906154e7565b341015610b41576040517fd0afc53400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068260048110610b7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154601360008481526020019081526020016000205482610b9c9190615460565b1115610bd4576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601360008481526020019081526020016000206000828254610bf79190615460565b92505081905550610c1933838360405180602001604052806000815250612607565b5050565b610c256125ff565b73ffffffffffffffffffffffffffffffffffffffff16610c43611819565b73ffffffffffffffffffffffffffffffffffffffff1614610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906151f6565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ce56125ff565b73ffffffffffffffffffffffffffffffffffffffff16610d03611819565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d50906151f6565b60405180910390fd5b818190508585905014610d98576040517fe6bbb3c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b85859050811015610f9b5760068460048110610de0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154838383818110610e1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356013600087815260200190815260200160002054610e409190615460565b1115610e78576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b828282818110610eb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135601360008681526020019081526020016000206000828254610eda9190615460565b92505081905550610f88868683818110610f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f329190614289565b85858585818110610f6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560405180602001604052806000815250612607565b8080610f93906156a5565b915050610d9b565b505050505050565b610fab6125ff565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ff15750610ff085610feb6125ff565b6121bb565b5b611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790615176565b60405180910390fd5b61103d858585858561279d565b5050505050565b61104c6125ff565b73ffffffffffffffffffffffffffffffffffffffff1661106a611819565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906151f6565b60405180910390fd5b60006110ca611819565b73ffffffffffffffffffffffffffffffffffffffff16476040516110ed90614e2c565b60006040518083038185875af1925050503d806000811461112a576040519150601f19603f3d011682016040523d82523d6000602084013e61112f565b606091505b505090508061113d57600080fd5b50565b60608151835114611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90615236565b60405180910390fd5b6000835167ffffffffffffffff8111156111c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111f75781602001602082028036833780820191505090505b50905060005b84518110156112e657611290858281518110611242577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611283577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516106a7565b8282815181106112c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806112df906156a5565b90506111fd565b508091505092915050565b6112f96125ff565b73ffffffffffffffffffffffffffffffffffffffff16611317611819565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611364906151f6565b60405180910390fd5b8060179080519060200190611383929190613e8f565b5050565b61138f6125ff565b73ffffffffffffffffffffffffffffffffffffffff166113ad611819565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906151f6565b60405180910390fd5b80601660146101000a81548160ff02191690831515021790555050565b601660149054906101000a900460ff16611466576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084833360405160200161147d93929190614e41565b604051602081830303815290604052805190602001209050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114e9836114db84612afd565b612b2d90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8284601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000888152602001908152602001600020546115939190615460565b11156115cb576040517fc3b708de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600a8660048110611606577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015461161291906154e7565b34101561164b576040517fd0afc53400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068560048110611685577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01546013600087815260200190815260200160002054856116a69190615460565b11156116de576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836013600087815260200190815260200160002060008282546117019190615460565b9250508190555083601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087815260200190815260200160002060008282546117689190615460565b9250508190555061178a33868660405180602001604052806000815250612607565b5050505050565b6117996125ff565b73ffffffffffffffffffffffffffffffffffffffff166117b7611819565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906151f6565b60405180910390fd5b6118176000612b54565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60126020528060005260406000206000915054906101000a900460ff1681565b825182511461189e576040517fe6bbb3c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008383336040516020016118b593929190614da0565b60405160208183030381529060405280519060200120905060006118ea836118dc84612afd565b612b2d90919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611973576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119f7576040517f7d702c7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8551811015611c13576006868281518110611a3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160048110611a7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154858281518110611ab8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160136000898581518110611afd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054611b1e9190615460565b1115611b56576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b848181518110611b8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160136000888481518110611bd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611bf99190615460565b925050819055508080611c0b906156a5565b9150506119fa565b506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c8733868660405180602001604052806000815250612c1a565b5050505050565b60058054611c9b90615642565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc790615642565b8015611d145780601f10611ce957610100808354040283529160200191611d14565b820191906000526020600020905b815481529060010190602001808311611cf757829003601f168201915b505050505081565b601660159054906101000a900460ff16611d62576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e8360048110611d9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154611da991906154e7565b341015611de2576040517fd0afc53400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003821115611e1d576040517f3f6cc76800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068260048110611e57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154816013600085815260200190815260200160002054611e789190615460565b1115611eb0576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601360008481526020019081526020016000206000828254611ed39190615460565b92505081905550611ef533838360405180602001604052806000815250612607565b5050565b611f0b611f046125ff565b8383612e84565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f98576040517f8b8fe7f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201f576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600161202b83836106a7565b1015612063576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206f82826001612ff1565b5050565b61207b6125ff565b73ffffffffffffffffffffffffffffffffffffffff16612099611819565b73ffffffffffffffffffffffffffffffffffffffff16146120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e6906151f6565b60405180910390fd5b80600a906004612100929190613f15565b5050565b61210c6125ff565b73ffffffffffffffffffffffffffffffffffffffff1661212a611819565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612177906151f6565b60405180910390fd5b80600e906004612191929190613f15565b5050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122576125ff565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061229d575061229c856122976125ff565b6121bb565b5b6122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390615116565b60405180910390fd5b6122e9858585858561320e565b5050505050565b6122f86125ff565b73ffffffffffffffffffffffffffffffffffffffff16612316611819565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612363906151f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d3906150d6565b60405180910390fd5b6123e581612b54565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600082141561249a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125fa565b600082905060005b600082146124cc5780806124b5906156a5565b915050600a826124c591906154b6565b91506124a2565b60008167ffffffffffffffff81111561250e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125405781602001600182028036833780820191505090505b5090505b600085146125f3576001826125599190615541565b9150600a856125689190615726565b60306125749190615460565b60f81b8183815181106125b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ec91906154b6565b9450612544565b8093505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90615276565b60405180910390fd5b60006126816125ff565b90506126a28160008761269388613490565b61269c88613490565b87613556565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127019190615460565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161277f9291906152b1565b60405180910390a46127968160008787878761355e565b5050505050565b81518351146127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890615256565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284890615156565b60405180910390fd5b600061285b6125ff565b905061286b818787878787613556565b60005b8451811015612a685760008582815181106128b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106128f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f906151d6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4d9190615460565b9250508190555050505080612a61906156a5565b905061286e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612adf929190614f7d565b60405180910390a4612af5818787878787613745565b505050505050565b600081604051602001612b109190614e06565b604051602081830303815290604052805190602001209050919050565b6000806000612b3c858561392c565b91509150612b49816139af565b819250505092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8190615276565b60405180910390fd5b8151835114612cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc590615256565b60405180910390fd5b6000612cd86125ff565b9050612ce981600087878787613556565b60005b8451811015612dee57838181518110612d2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110612d72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dd49190615460565b925050819055508080612de6906156a5565b915050612cec565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612e66929190614f7d565b60405180910390a4612e7d81600087878787613745565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eea90615216565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe49190614fb4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613058906151b6565b60405180910390fd5b600061306b6125ff565b905061309b8185600061307d87613490565b61308687613490565b60405180602001604052806000815250613556565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015613132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613129906150f6565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516131ff9291906152b1565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590615156565b60405180910390fd5b60006132886125ff565b90506132a881878761329988613490565b6132a288613490565b87613556565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561333f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613336906151d6565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f49190615460565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516134719291906152b1565b60405180910390a461348782888888888861355e565b50505050505050565b60606000600167ffffffffffffffff8111156134d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156135035781602001602082028036833780820191505090505b5090508281600081518110613541577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b61357d8473ffffffffffffffffffffffffffffffffffffffff16613d00565b1561373d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016135c3959493929190614f01565b602060405180830381600087803b1580156135dd57600080fd5b505af192505050801561360e57506040513d601f19601f8201168201806040525081019061360b91906146bb565b60015b6136b45761361a615813565b806308c379a01415613677575061362f615df7565b8061363a5750613679565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366e9190615014565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ab90615056565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373290615076565b60405180910390fd5b505b505050505050565b6137648473ffffffffffffffffffffffffffffffffffffffff16613d00565b15613924578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016137aa959493929190614e99565b602060405180830381600087803b1580156137c457600080fd5b505af19250505080156137f557506040513d601f19601f820116820180604052508101906137f291906146bb565b60015b61389b57613801615813565b806308c379a0141561385e5750613816615df7565b806138215750613860565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138559190615014565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389290615056565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391990615076565b60405180910390fd5b505b505050505050565b60008060418351141561396e5760008060006020860151925060408601519150606086015160001a905061396287828585613d23565b945094505050506139a8565b60408351141561399f576000806020850151915060408501519050613994868383613e30565b9350935050506139a8565b60006002915091505b9250929050565b600060048111156139e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a2d57613cfd565b60016004811115613a67577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613aa0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad890615036565b60405180910390fd5b60026004811115613b1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613b54577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8c90615096565b60405180910390fd5b60036004811115613bcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c08577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4090615136565b60405180910390fd5b600480811115613c82577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613cbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf390615196565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613d5e576000600391509150613e27565b601b8560ff1614158015613d765750601c8560ff1614155b15613d88576000600491509150613e27565b600060018787878760405160008152602001604052604051613dad9493929190614fcf565b6020604051602081039080840390855afa158015613dcf573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e1e57600060019250925050613e27565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613e739190615460565b9050613e8187828885613d23565b935093505050935093915050565b828054613e9b90615642565b90600052602060002090601f016020900481019282613ebd5760008555613f04565b82601f10613ed657805160ff1916838001178555613f04565b82800160010185558215613f04579182015b82811115613f03578251825591602001919060010190613ee8565b5b509050613f119190613f55565b5090565b8260048101928215613f44579160200282015b82811115613f43578235825591602001919060010190613f28565b5b509050613f519190613f55565b5090565b5b80821115613f6e576000816000905550600101613f56565b5090565b6000613f85613f80846152ff565b6152da565b90508083825260208201905082856020860282011115613fa457600080fd5b60005b85811015613fd45781613fba88826140c6565b845260208401935060208301925050600181019050613fa7565b5050509392505050565b6000613ff1613fec8461532b565b6152da565b9050808382526020820190508285602086028201111561401057600080fd5b60005b8581101561404057816140268882614274565b845260208401935060208301925050600181019050614013565b5050509392505050565b600061405d61405884615357565b6152da565b90508281526020810184848401111561407557600080fd5b614080848285615600565b509392505050565b600061409b61409684615388565b6152da565b9050828152602081018484840111156140b357600080fd5b6140be848285615600565b509392505050565b6000813590506140d581615e8d565b92915050565b60008083601f8401126140ed57600080fd5b8235905067ffffffffffffffff81111561410657600080fd5b60208301915083602082028301111561411e57600080fd5b9250929050565b600082601f83011261413657600080fd5b8135614146848260208601613f72565b91505092915050565b60008190508260206004028201111561416757600080fd5b92915050565b60008083601f84011261417f57600080fd5b8235905067ffffffffffffffff81111561419857600080fd5b6020830191508360208202830111156141b057600080fd5b9250929050565b600082601f8301126141c857600080fd5b81356141d8848260208601613fde565b91505092915050565b6000813590506141f081615ea4565b92915050565b60008135905061420581615ebb565b92915050565b60008151905061421a81615ebb565b92915050565b600082601f83011261423157600080fd5b813561424184826020860161404a565b91505092915050565b600082601f83011261425b57600080fd5b813561426b848260208601614088565b91505092915050565b60008135905061428381615ed2565b92915050565b60006020828403121561429b57600080fd5b60006142a9848285016140c6565b91505092915050565b600080604083850312156142c557600080fd5b60006142d3858286016140c6565b92505060206142e4858286016140c6565b9150509250929050565b600080600080600060a0868803121561430657600080fd5b6000614314888289016140c6565b9550506020614325888289016140c6565b945050604086013567ffffffffffffffff81111561434257600080fd5b61434e888289016141b7565b935050606086013567ffffffffffffffff81111561436b57600080fd5b614377888289016141b7565b925050608086013567ffffffffffffffff81111561439457600080fd5b6143a088828901614220565b9150509295509295909350565b600080600080600060a086880312156143c557600080fd5b60006143d3888289016140c6565b95505060206143e4888289016140c6565b94505060406143f588828901614274565b935050606061440688828901614274565b925050608086013567ffffffffffffffff81111561442357600080fd5b61442f88828901614220565b9150509295509295909350565b6000806040838503121561444f57600080fd5b600061445d858286016140c6565b925050602061446e858286016141e1565b9150509250929050565b6000806040838503121561448b57600080fd5b6000614499858286016140c6565b92505060206144aa85828601614274565b9150509250929050565b6000806000806000606086880312156144cc57600080fd5b600086013567ffffffffffffffff8111156144e657600080fd5b6144f2888289016140db565b9550955050602061450588828901614274565b935050604086013567ffffffffffffffff81111561452257600080fd5b61452e8882890161416d565b92509250509295509295909350565b6000806040838503121561455057600080fd5b600083013567ffffffffffffffff81111561456a57600080fd5b61457685828601614125565b925050602083013567ffffffffffffffff81111561459357600080fd5b61459f858286016141b7565b9150509250929050565b6000608082840312156145bb57600080fd5b60006145c98482850161414f565b91505092915050565b6000806000606084860312156145e757600080fd5b600084013567ffffffffffffffff81111561460157600080fd5b61460d868287016141b7565b935050602084013567ffffffffffffffff81111561462a57600080fd5b614636868287016141b7565b925050604084013567ffffffffffffffff81111561465357600080fd5b61465f86828701614220565b9150509250925092565b60006020828403121561467b57600080fd5b6000614689848285016141e1565b91505092915050565b6000602082840312156146a457600080fd5b60006146b2848285016141f6565b91505092915050565b6000602082840312156146cd57600080fd5b60006146db8482850161420b565b91505092915050565b6000602082840312156146f657600080fd5b600082013567ffffffffffffffff81111561471057600080fd5b61471c8482850161424a565b91505092915050565b60006020828403121561473757600080fd5b600061474584828501614274565b91505092915050565b6000806040838503121561476157600080fd5b600061476f85828601614274565b925050602061478085828601614274565b9150509250929050565b600080600080608085870312156147a057600080fd5b60006147ae87828801614274565b94505060206147bf87828801614274565b93505060406147d087828801614274565b925050606085013567ffffffffffffffff8111156147ed57600080fd5b6147f987828801614220565b91505092959194509250565b60006148118383614d4d565b60208301905092915050565b60006148298383614d6b565b60208301905092915050565b61483e81615575565b82525050565b61485561485082615575565b6156ee565b82525050565b6000614866826153de565b614870818561540c565b935061487b836153b9565b8060005b838110156148ac5781516148938882614805565b975061489e836153ff565b92505060018101905061487f565b5085935050505092915050565b60006148c4826153de565b6148ce818561541d565b93506148d9836153b9565b8060005b8381101561490a5781516148f1888261481d565b97506148fc836153ff565b9250506001810190506148dd565b5085935050505092915050565b61492081615587565b82525050565b61492f81615593565b82525050565b61494661494182615593565b615700565b82525050565b6000614957826153e9565b6149618185615428565b935061497181856020860161560f565b61497a81615835565b840191505092915050565b6000614990826153f4565b61499a8185615444565b93506149aa81856020860161560f565b6149b381615835565b840191505092915050565b60006149c9826153f4565b6149d38185615455565b93506149e381856020860161560f565b80840191505092915050565b600081546149fc81615642565b614a068186615455565b94506001821660008114614a215760018114614a3257614a65565b60ff19831686528186019350614a65565b614a3b856153c9565b60005b83811015614a5d57815481890152600182019150602081019050614a3e565b838801955050505b50505092915050565b6000614a7b601883615444565b9150614a8682615860565b602082019050919050565b6000614a9e603483615444565b9150614aa982615889565b604082019050919050565b6000614ac1602883615444565b9150614acc826158d8565b604082019050919050565b6000614ae4601f83615444565b9150614aef82615927565b602082019050919050565b6000614b07601c83615455565b9150614b1282615950565b601c82019050919050565b6000614b2a602b83615444565b9150614b3582615979565b604082019050919050565b6000614b4d602683615444565b9150614b58826159c8565b604082019050919050565b6000614b70602483615444565b9150614b7b82615a17565b604082019050919050565b6000614b93602983615444565b9150614b9e82615a66565b604082019050919050565b6000614bb6602283615444565b9150614bc182615ab5565b604082019050919050565b6000614bd9602583615444565b9150614be482615b04565b604082019050919050565b6000614bfc603283615444565b9150614c0782615b53565b604082019050919050565b6000614c1f602283615444565b9150614c2a82615ba2565b604082019050919050565b6000614c42602383615444565b9150614c4d82615bf1565b604082019050919050565b6000614c65602a83615444565b9150614c7082615c40565b604082019050919050565b6000614c88602083615444565b9150614c9382615c8f565b602082019050919050565b6000614cab600083615439565b9150614cb682615cb8565b600082019050919050565b6000614cce602983615444565b9150614cd982615cbb565b604082019050919050565b6000614cf1602983615444565b9150614cfc82615d0a565b604082019050919050565b6000614d14602883615444565b9150614d1f82615d59565b604082019050919050565b6000614d37602183615444565b9150614d4282615da8565b604082019050919050565b614d56816155e9565b82525050565b614d65816155e9565b82525050565b614d74816155e9565b82525050565b614d8b614d86826155e9565b61571c565b82525050565b614d9a816155f3565b82525050565b6000614dac82866148b9565b9150614db882856148b9565b9150614dc48284614844565b601482019150819050949350505050565b6000614de182866149ef565b9150614ded82856149be565b9150614df982846149ef565b9150819050949350505050565b6000614e1182614afa565b9150614e1d8284614935565b60208201915081905092915050565b6000614e3782614c9e565b9150819050919050565b6000614e4d8286614d7a565b602082019150614e5d8285614d7a565b602082019150614e6d8284614844565b601482019150819050949350505050565b6000602082019050614e936000830184614835565b92915050565b600060a082019050614eae6000830188614835565b614ebb6020830187614835565b8181036040830152614ecd818661485b565b90508181036060830152614ee1818561485b565b90508181036080830152614ef5818461494c565b90509695505050505050565b600060a082019050614f166000830188614835565b614f236020830187614835565b614f306040830186614d5c565b614f3d6060830185614d5c565b8181036080830152614f4f818461494c565b90509695505050505050565b60006020820190508181036000830152614f75818461485b565b905092915050565b60006040820190508181036000830152614f97818561485b565b90508181036020830152614fab818461485b565b90509392505050565b6000602082019050614fc96000830184614917565b92915050565b6000608082019050614fe46000830187614926565b614ff16020830186614d91565b614ffe6040830185614926565b61500b6060830184614926565b95945050505050565b6000602082019050818103600083015261502e8184614985565b905092915050565b6000602082019050818103600083015261504f81614a6e565b9050919050565b6000602082019050818103600083015261506f81614a91565b9050919050565b6000602082019050818103600083015261508f81614ab4565b9050919050565b600060208201905081810360008301526150af81614ad7565b9050919050565b600060208201905081810360008301526150cf81614b1d565b9050919050565b600060208201905081810360008301526150ef81614b40565b9050919050565b6000602082019050818103600083015261510f81614b63565b9050919050565b6000602082019050818103600083015261512f81614b86565b9050919050565b6000602082019050818103600083015261514f81614ba9565b9050919050565b6000602082019050818103600083015261516f81614bcc565b9050919050565b6000602082019050818103600083015261518f81614bef565b9050919050565b600060208201905081810360008301526151af81614c12565b9050919050565b600060208201905081810360008301526151cf81614c35565b9050919050565b600060208201905081810360008301526151ef81614c58565b9050919050565b6000602082019050818103600083015261520f81614c7b565b9050919050565b6000602082019050818103600083015261522f81614cc1565b9050919050565b6000602082019050818103600083015261524f81614ce4565b9050919050565b6000602082019050818103600083015261526f81614d07565b9050919050565b6000602082019050818103600083015261528f81614d2a565b9050919050565b60006020820190506152ab6000830184614d5c565b92915050565b60006040820190506152c66000830185614d5c565b6152d36020830184614d5c565b9392505050565b60006152e46152f5565b90506152f08282615674565b919050565b6000604051905090565b600067ffffffffffffffff82111561531a576153196157e4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615346576153456157e4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615372576153716157e4565b5b61537b82615835565b9050602081019050919050565b600067ffffffffffffffff8211156153a3576153a26157e4565b5b6153ac82615835565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061546b826155e9565b9150615476836155e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154ab576154aa615757565b5b828201905092915050565b60006154c1826155e9565b91506154cc836155e9565b9250826154dc576154db615786565b5b828204905092915050565b60006154f2826155e9565b91506154fd836155e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561553657615535615757565b5b828202905092915050565b600061554c826155e9565b9150615557836155e9565b92508282101561556a57615569615757565b5b828203905092915050565b6000615580826155c9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561562d578082015181840152602081019050615612565b8381111561563c576000848401525b50505050565b6000600282049050600182168061565a57607f821691505b6020821081141561566e5761566d6157b5565b5b50919050565b61567d82615835565b810181811067ffffffffffffffff8211171561569c5761569b6157e4565b5b80604052505050565b60006156b0826155e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156e3576156e2615757565b5b600182019050919050565b60006156f98261570a565b9050919050565b6000819050919050565b600061571582615846565b9050919050565b6000819050919050565b6000615731826155e9565b915061573c836155e9565b92508261574c5761574b615786565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156158325760046000803e61582f600051615853565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015615e0757615e8a565b615e0f6152f5565b60043d036004823e80513d602482011167ffffffffffffffff82111715615e37575050615e8a565b808201805167ffffffffffffffff811115615e555750505050615e8a565b80602083010160043d038501811115615e72575050505050615e8a565b615e8182602001850186615674565b82955050505050505b90565b615e9681615575565b8114615ea157600080fd5b50565b615ead81615587565b8114615eb857600080fd5b50565b615ec48161559d565b8114615ecf57600080fd5b50565b615edb816155e9565b8114615ee657600080fd5b5056fea264697066735822122066ad01b7470ac958fdf31ce6c88d8141039c87ddb32585e7068d29c177062cf864736f6c63430008040033

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.