ETH Price: $4,078.55 (+4.65%)

Token

ComicBoxel (COMBOX)
 

Overview

Max Total Supply

0 COMBOX

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 COMBOX
0x067432789aaa5072164fa8af69361539b7fb112d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Comic Boxels is a NFT project aiming to build a bridge to traditional comic culture, created for native Web3 collectors, while welcoming publishers and creators from all genres of the traditional comic book world.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ComicBoxel

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract ComicBoxel is ERC721, ERC721Burnable, Ownable {
  using SafeMath for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  event RoyaltyPaid(string sku, address artist, uint256 royalty);

  //catalog item
  struct Item {
    string sku;
    uint256 price;
    string metadataURI;
    address artist;
    uint8 royaltiesPercentage;
    uint16 quantity;
    uint16 left;
  }

  mapping(string => Item) _catalog;
  mapping(uint256 => string) _tokenIdToSku;
  mapping(string => uint256[]) _skuToTokenIds;

  string private baseURI = "";
  string private _contractURI = "";

  constructor(string memory name, string memory symbol, string memory newBaseURI, string memory newContractURI) ERC721(name, symbol) 
  {
    baseURI = newBaseURI;
    _contractURI = newContractURI;
  }

  /**
    Mint
   */
  function buyBoxel(string memory sku) public payable {
    Item memory item = _catalog[sku];
    require(bytes(item.sku).length != 0, "SKU does not exist in catalog");
    require(item.left > 0, "No NFTs left for this SKU");
    require(msg.value >= item.price, "Insufficient ETH sent for Boxel");

    //create a new token
    _tokenIds.increment();
    uint256 tokenId = _tokenIds.current();

    //mint a new token
    _safeMint(msg.sender, tokenId);

    //pay royalties to artist
    payRoyalties(item);

    //decrease number of items left
    item.left = item.left - 1;
    _catalog[sku] = item;

    //save token->sku
    _tokenIdToSku[tokenId] = sku;
    //save sku->token
    _skuToTokenIds[sku].push(tokenId);
  }

  function payRoyalties(Item memory item) private {
    uint256 royalty = (item.price.mul(item.royaltiesPercentage)).div(100);
    payable(item.artist).transfer(royalty);
    emit RoyaltyPaid(item.sku, item.artist, royalty);
  }

  /**
    URI functions
   */
  function getBaseURI() public view onlyOwner returns (string memory) {
		return baseURI;
	}

  function setBaseURI(string memory newBaseURI) public onlyOwner {
		baseURI = newBaseURI;
	}

  function contractURI() public view returns (string memory) {
    return string(abi.encodePacked(baseURI, _contractURI));
  }

  function setContractURI(string memory newContractURI) public onlyOwner {
    _contractURI = newContractURI;
  }

  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    require(_exists(tokenId), "Token with this ID does not exist");
    string memory sku = _tokenIdToSku[tokenId];
    require(bytes(sku).length != 0, "SKU not found for token ID");
    Item memory item = _catalog[sku];
    return string(abi.encodePacked(baseURI, item.metadataURI));
	}

  /**
    Catalog functions
   */
  function addItem(Item memory item) public onlyOwner {
    require(bytes(item.sku).length != 0, "SKU can not be empty");
    _catalog[item.sku] = item;
  }

  function addItems(Item[] memory items) public onlyOwner {
    for(uint i = 0; i < items.length; i++) {
      require(bytes(items[i].sku).length != 0, "SKU can not be empty");
      _catalog[items[i].sku] = items[i];
    }
  }

  //to deactivate an item, remove it's metadata
  function deactivateItem(string memory sku) public onlyOwner {
    Item memory item = _catalog[sku];
    require(bytes(item.sku).length != 0, "SKU not found");
    item.left = 0;
    _catalog[sku] = item;
  }

  function getItemBySku(string memory sku) public view onlyOwner returns(Item memory) {
    Item memory item = _catalog[sku];
    require(bytes(item.sku).length != 0, "SKU not found");
    return item;
  }

  function getItemByTokenId(uint256 tokenId) public view onlyOwner returns(Item memory) {
    string memory sku = _tokenIdToSku[tokenId];
    require(bytes(sku).length != 0, "SKU not found for provided token Id");
    return getItemBySku(sku);
  }

  function getSkuByTokenId(uint256 tokenId) public view onlyOwner returns (string memory) {
    return _tokenIdToSku[tokenId];
  }

  function getTokenIdsBySku(string memory sku) public view onlyOwner returns (uint256[] memory) {
    return _skuToTokenIds[sku];
  }
  
  /**
    Withdraw funds
   */
	function withdraw() public onlyOwner {
		uint256 balance = address(this).balance;
		payable(msg.sender).transfer(balance);
	}
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 14 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

File 5 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"newBaseURI","type":"string"},{"internalType":"string","name":"newContractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"sku","type":"string"},{"indexed":false,"internalType":"address","name":"artist","type":"address"},{"indexed":false,"internalType":"uint256","name":"royalty","type":"uint256"}],"name":"RoyaltyPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"components":[{"internalType":"string","name":"sku","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"uint8","name":"royaltiesPercentage","type":"uint8"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"uint16","name":"left","type":"uint16"}],"internalType":"struct ComicBoxel.Item","name":"item","type":"tuple"}],"name":"addItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"sku","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"uint8","name":"royaltiesPercentage","type":"uint8"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"uint16","name":"left","type":"uint16"}],"internalType":"struct ComicBoxel.Item[]","name":"items","type":"tuple[]"}],"name":"addItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"sku","type":"string"}],"name":"buyBoxel","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"sku","type":"string"}],"name":"deactivateItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"sku","type":"string"}],"name":"getItemBySku","outputs":[{"components":[{"internalType":"string","name":"sku","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"uint8","name":"royaltiesPercentage","type":"uint8"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"uint16","name":"left","type":"uint16"}],"internalType":"struct ComicBoxel.Item","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getItemByTokenId","outputs":[{"components":[{"internalType":"string","name":"sku","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"uint8","name":"royaltiesPercentage","type":"uint8"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"uint16","name":"left","type":"uint16"}],"internalType":"struct ComicBoxel.Item","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSkuByTokenId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"sku","type":"string"}],"name":"getTokenIdsBySku","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620001e7565b5060405180602001604052806000815250600c908051906020019062000053929190620001e7565b503480156200006157600080fd5b5060405162005a5338038062005a53833981810160405281019062000087919062000309565b83838160009080519060200190620000a1929190620001e7565b508060019080519060200190620000ba929190620001e7565b505050620000dd620000d16200011960201b60201c565b6200012160201b60201c565b81600b9080519060200190620000f5929190620001e7565b5080600c90805190602001906200010e929190620001e7565b505050505062000549565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f5906200046e565b90600052602060002090601f01602090048101928262000219576000855562000265565b82601f106200023457805160ff191683800117855562000265565b8280016001018555821562000265579182015b828111156200026457825182559160200191906001019062000247565b5b50905062000274919062000278565b5090565b5b808211156200029357600081600090555060010162000279565b5090565b6000620002ae620002a88462000402565b620003d9565b905082815260208101848484011115620002c757600080fd5b620002d484828562000438565b509392505050565b600082601f830112620002ee57600080fd5b81516200030084826020860162000297565b91505092915050565b600080600080608085870312156200032057600080fd5b600085015167ffffffffffffffff8111156200033b57600080fd5b6200034987828801620002dc565b945050602085015167ffffffffffffffff8111156200036757600080fd5b6200037587828801620002dc565b935050604085015167ffffffffffffffff8111156200039357600080fd5b620003a187828801620002dc565b925050606085015167ffffffffffffffff811115620003bf57600080fd5b620003cd87828801620002dc565b91505092959194509250565b6000620003e5620003f8565b9050620003f38282620004a4565b919050565b6000604051905090565b600067ffffffffffffffff82111562000420576200041f62000509565b5b6200042b8262000538565b9050602081019050919050565b60005b83811015620004585780820151818401526020810190506200043b565b8381111562000468576000848401525b50505050565b600060028204905060018216806200048757607f821691505b602082108114156200049e576200049d620004da565b5b50919050565b620004af8262000538565b810181811067ffffffffffffffff82111715620004d157620004d062000509565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6154fa80620005596000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610675578063f2fde38b146106b2578063fc178dab146106db578063fc1c767914610718576101cd565b8063c87b56dd146105bb578063cfed20bc146105f8578063e156076614610621578063e8a3d4851461064a576101cd565b806395d89b41116100d157806395d89b4114610501578063a22cb4651461052c578063b520fa8f14610555578063b88d4fde14610592576101cd565b8063715018a6146104965780638da5cb5b146104ad578063938e3d7b146104d8576101cd565b806342842e0e1161016f57806362e2eff01161013e57806362e2eff0146103b45780636352211e146103f157806370a082311461042e578063714c53981461046b576101cd565b806342842e0e1461031d57806342966c681461034657806355f804b31461036f5780635f62e8dd14610398576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806323b872dd146102a057806328e3802c146102c95780633ccfd60b14610306576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613da4565b610741565b60405161020691906145ae565b60405180910390f35b34801561021b57600080fd5b50610224610823565b60405161023191906145c9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613e78565b6108b5565b60405161026e9190614525565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613d27565b61093a565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190613c21565b610a52565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190613e78565b610ab2565b6040516102fd91906145c9565b60405180910390f35b34801561031257600080fd5b5061031b610bd3565b005b34801561032957600080fd5b50610344600480360381019061033f9190613c21565b610c9e565b005b34801561035257600080fd5b5061036d60048036038101906103689190613e78565b610cbe565b005b34801561037b57600080fd5b5061039660048036038101906103919190613df6565b610d1a565b005b6103b260048036038101906103ad9190613df6565b610db0565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613df6565b61126e565b6040516103e89190614929565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190613e78565b611552565b6040516104259190614525565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190613bbc565b611604565b604051610462919061494b565b60405180910390f35b34801561047757600080fd5b506104806116bc565b60405161048d91906145c9565b60405180910390f35b3480156104a257600080fd5b506104ab6117ca565b005b3480156104b957600080fd5b506104c2611852565b6040516104cf9190614525565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190613df6565b61187c565b005b34801561050d57600080fd5b50610516611912565b60405161052391906145c9565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613ceb565b6119a4565b005b34801561056157600080fd5b5061057c60048036038101906105779190613e78565b611b25565b6040516105899190614929565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613c70565b611c9f565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190613e78565b611d01565b6040516105ef91906145c9565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613d63565b61206e565b005b34801561062d57600080fd5b5061064860048036038101906106439190613df6565b61232e565b005b34801561065657600080fd5b5061065f61272e565b60405161066c91906145c9565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190613be5565b612759565b6040516106a991906145ae565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613bbc565b6127ed565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613df6565b6128e5565b60405161070f919061458c565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190613e37565b6129d7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081c575061081b82612bb7565b5b9050919050565b60606000805461083290614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90614cd5565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c082612c21565b6108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690614809565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094582611552565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90614889565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d5612c8d565b73ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03816109fe612c8d565b612759565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90614749565b60405180910390fd5b610a4d8383612c95565b505050565b610a63610a5d612c8d565b82612d4e565b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906148a9565b60405180910390fd5b610aad838383612e2c565b505050565b6060610abc612c8d565b73ffffffffffffffffffffffffffffffffffffffff16610ada611852565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790614829565b60405180910390fd5b600960008381526020019081526020016000208054610b4e90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a90614cd5565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b50505050509050919050565b610bdb612c8d565b73ffffffffffffffffffffffffffffffffffffffff16610bf9611852565b73ffffffffffffffffffffffffffffffffffffffff1614610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690614829565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c9a573d6000803e3d6000fd5b5050565b610cb983838360405180602001604052806000815250611c9f565b505050565b610ccf610cc9612c8d565b82612d4e565b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590614909565b60405180910390fd5b610d1781613088565b50565b610d22612c8d565b73ffffffffffffffffffffffffffffffffffffffff16610d40611852565b73ffffffffffffffffffffffffffffffffffffffff1614610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90614829565b60405180910390fd5b80600b9080519060200190610dac9291906137c8565b5050565b6000600882604051610dc291906144c6565b90815260200160405180910390206040518060e0016040529081600082018054610deb90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790614cd5565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050815260200160018201548152602001600282018054610e8790614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390614cd5565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff1681525050905060008160000151511415611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906148c9565b60405180910390fd5b60008160c0015161ffff1611611052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611049906146a9565b60405180910390fd5b8060200151341015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614729565b60405180910390fd5b6110a36007613199565b60006110af60076131af565b90506110bb33826131bd565b6110c4826131db565b60018260c001516110d59190614b9c565b8260c0019061ffff16908161ffff1681525050816008846040516110f991906144c6565b908152602001604051809103902060008201518160000190805190602001906111239291906137c8565b5060208201518160010155604082015181600201908051906020019061114a9291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff160217905550905050826009600083815260200190815260200160002090805190602001906112239291906137c8565b50600a8360405161123491906144c6565b9081526020016040518091039020819080600181540180825580915050600190039060005260206000200160009091909190915055505050565b61127661384e565b61127e612c8d565b73ffffffffffffffffffffffffffffffffffffffff1661129c611852565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990614829565b60405180910390fd5b600060088360405161130491906144c6565b90815260200160405180910390206040518060e001604052908160008201805461132d90614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461135990614cd5565b80156113a65780601f1061137b576101008083540402835291602001916113a6565b820191906000526020600020905b81548152906001019060200180831161138957829003601f168201915b50505050508152602001600182015481526020016002820180546113c990614cd5565b80601f01602080910402602001604051908101604052809291908181526020018280546113f590614cd5565b80156114425780601f1061141757610100808354040283529160200191611442565b820191906000526020600020905b81548152906001019060200180831161142557829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff1681525050905060008160000151511415611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090614869565b60405180910390fd5b80915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906147a9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614789565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606116c6612c8d565b73ffffffffffffffffffffffffffffffffffffffff166116e4611852565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190614829565b60405180910390fd5b600b805461174790614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461177390614cd5565b80156117c05780601f10611795576101008083540402835291602001916117c0565b820191906000526020600020905b8154815290600101906020018083116117a357829003601f168201915b5050505050905090565b6117d2612c8d565b73ffffffffffffffffffffffffffffffffffffffff166117f0611852565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90614829565b60405180910390fd5b61185060006132a2565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611884612c8d565b73ffffffffffffffffffffffffffffffffffffffff166118a2611852565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90614829565b60405180910390fd5b80600c908051906020019061190e9291906137c8565b5050565b60606001805461192190614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461194d90614cd5565b801561199a5780601f1061196f5761010080835404028352916020019161199a565b820191906000526020600020905b81548152906001019060200180831161197d57829003601f168201915b5050505050905090565b6119ac612c8d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a11906146e9565b60405180910390fd5b8060056000611a27612c8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad4612c8d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1991906145ae565b60405180910390a35050565b611b2d61384e565b611b35612c8d565b73ffffffffffffffffffffffffffffffffffffffff16611b53611852565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614829565b60405180910390fd5b6000600960008481526020019081526020016000208054611bc990614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf590614cd5565b8015611c425780601f10611c1757610100808354040283529160200191611c42565b820191906000526020600020905b815481529060010190602001808311611c2557829003601f168201915b50505050509050600081511415611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590614629565b60405180910390fd5b611c978161126e565b915050919050565b611cb0611caa612c8d565b83612d4e565b611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce6906148a9565b60405180910390fd5b611cfb84848484613368565b50505050565b6060611d0c82612c21565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906148e9565b60405180910390fd5b6000600960008481526020019081526020016000208054611d6b90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9790614cd5565b8015611de45780601f10611db957610100808354040283529160200191611de4565b820191906000526020600020905b815481529060010190602001808311611dc757829003601f168201915b50505050509050600081511415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790614769565b60405180910390fd5b6000600882604051611e4291906144c6565b90815260200160405180910390206040518060e0016040529081600082018054611e6b90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9790614cd5565b8015611ee45780601f10611eb957610100808354040283529160200191611ee4565b820191906000526020600020905b815481529060010190602001808311611ec757829003601f168201915b5050505050815260200160018201548152602001600282018054611f0790614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3390614cd5565b8015611f805780601f10611f5557610100808354040283529160200191611f80565b820191906000526020600020905b815481529060010190602001808311611f6357829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff16815250509050600b81604001516040516020016120569291906144dd565b60405160208183030381529060405292505050919050565b612076612c8d565b73ffffffffffffffffffffffffffffffffffffffff16612094611852565b73ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190614829565b60405180910390fd5b60005b815181101561232a576000828281518110612131577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015151141561217f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612176906147c9565b60405180910390fd5b8181815181106121b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160088383815181106121fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015160405161221491906144c6565b9081526020016040518091039020600082015181600001908051906020019061223e9291906137c8565b506020820151816001015560408201518160020190805190602001906122659291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff160217905550905050808061232290614d38565b9150506120ed565b5050565b612336612c8d565b73ffffffffffffffffffffffffffffffffffffffff16612354611852565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190614829565b60405180910390fd5b60006008826040516123bc91906144c6565b90815260200160405180910390206040518060e00160405290816000820180546123e590614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461241190614cd5565b801561245e5780601f106124335761010080835404028352916020019161245e565b820191906000526020600020905b81548152906001019060200180831161244157829003601f168201915b505050505081526020016001820154815260200160028201805461248190614cd5565b80601f01602080910402602001604051908101604052809291908181526020018280546124ad90614cd5565b80156124fa5780601f106124cf576101008083540402835291602001916124fa565b820191906000526020600020905b8154815290600101906020018083116124dd57829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff1681525050905060008160000151511415612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890614869565b60405180910390fd5b60008160c0019061ffff16908161ffff16815250508060088360405161262791906144c6565b908152602001604051809103902060008201518160000190805190602001906126519291906137c8565b506020820151816001015560408201518160020190805190602001906126789291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff1602179055509050505050565b6060600b600c604051602001612745929190614501565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127f5612c8d565b73ffffffffffffffffffffffffffffffffffffffff16612813611852565b73ffffffffffffffffffffffffffffffffffffffff1614612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d090614669565b60405180910390fd5b6128e2816132a2565b50565b60606128ef612c8d565b73ffffffffffffffffffffffffffffffffffffffff1661290d611852565b73ffffffffffffffffffffffffffffffffffffffff1614612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295a90614829565b60405180910390fd5b600a8260405161297391906144c6565b90815260200160405180910390208054806020026020016040519081016040528092919081815260200182805480156129cb57602002820191906000526020600020905b8154815260200190600101908083116129b7575b50505050509050919050565b6129df612c8d565b73ffffffffffffffffffffffffffffffffffffffff166129fd611852565b73ffffffffffffffffffffffffffffffffffffffff1614612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614829565b60405180910390fd5b60008160000151511415612a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a93906147c9565b60405180910390fd5b8060088260000151604051612ab191906144c6565b90815260200160405180910390206000820151816000019080519060200190612adb9291906137c8565b50602082015181600101556040820151816002019080519060200190612b029291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff16021790555090505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d0883611552565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d5982612c21565b612d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8f90614709565b60405180910390fd5b6000612da383611552565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e1257508373ffffffffffffffffffffffffffffffffffffffff16612dfa846108b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e235750612e228185612759565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e4c82611552565b73ffffffffffffffffffffffffffffffffffffffff1614612ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9990614849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f09906146c9565b60405180910390fd5b612f1d8383836133c4565b612f28600082612c95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f789190614bd0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fcf9190614abb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061309382611552565b90506130a1816000846133c4565b6130ac600083612c95565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130fc9190614bd0565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6131d78282604051806020016040528060008152506133c9565b5050565b600061320e6064613200846080015160ff16856020015161342490919063ffffffff16565b61343a90919063ffffffff16565b9050816060015173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561325a573d6000803e3d6000fd5b507fa4d0d876b730b913e8c4d9870a8e9fa0bbfdb2e1edb29278ec445c3640a17c3c8260000151836060015183604051613296939291906145eb565b60405180910390a15050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613373848484612e2c565b61337f84848484613450565b6133be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b590614649565b60405180910390fd5b50505050565b505050565b6133d383836135e7565b6133e06000848484613450565b61341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341690614649565b60405180910390fd5b505050565b600081836134329190614b42565b905092915050565b600081836134489190614b11565b905092915050565b60006134718473ffffffffffffffffffffffffffffffffffffffff166137b5565b156135da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261349a612c8d565b8786866040518563ffffffff1660e01b81526004016134bc9493929190614540565b602060405180830381600087803b1580156134d657600080fd5b505af192505050801561350757506040513d601f19601f820116820180604052508101906135049190613dcd565b60015b61358a573d8060008114613537576040519150601f19603f3d011682016040523d82523d6000602084013e61353c565b606091505b50600081511415613582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357990614649565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135df565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364e906147e9565b60405180910390fd5b61366081612c21565b156136a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369790614689565b60405180910390fd5b6136ac600083836133c4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136fc9190614abb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137d490614cd5565b90600052602060002090601f0160209004810192826137f6576000855561383d565b82601f1061380f57805160ff191683800117855561383d565b8280016001018555821561383d579182015b8281111561383c578251825591602001919060010190613821565b5b50905061384a91906138ac565b5090565b6040518060e00160405280606081526020016000815260200160608152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600060ff168152602001600061ffff168152602001600061ffff1681525090565b5b808211156138c55760008160009055506001016138ad565b5090565b60006138dc6138d78461498b565b614966565b905080838252602082019050828560208602820111156138fb57600080fd5b60005b8581101561394557813567ffffffffffffffff81111561391d57600080fd5b80860161392a8982613a9d565b855260208501945060208401935050506001810190506138fe565b5050509392505050565b600061396261395d846149b7565b614966565b90508281526020810184848401111561397a57600080fd5b613985848285614c93565b509392505050565b60006139a061399b846149e8565b614966565b9050828152602081018484840111156139b857600080fd5b6139c3848285614c93565b509392505050565b6000813590506139da8161543a565b92915050565b600082601f8301126139f157600080fd5b8135613a018482602086016138c9565b91505092915050565b600081359050613a1981615451565b92915050565b600081359050613a2e81615468565b92915050565b600081519050613a4381615468565b92915050565b600082601f830112613a5a57600080fd5b8135613a6a84826020860161394f565b91505092915050565b600082601f830112613a8457600080fd5b8135613a9484826020860161398d565b91505092915050565b600060e08284031215613aaf57600080fd5b613ab960e0614966565b9050600082013567ffffffffffffffff811115613ad557600080fd5b613ae184828501613a73565b6000830152506020613af584828501613b92565b602083015250604082013567ffffffffffffffff811115613b1557600080fd5b613b2184828501613a73565b6040830152506060613b35848285016139cb565b6060830152506080613b4984828501613ba7565b60808301525060a0613b5d84828501613b7d565b60a08301525060c0613b7184828501613b7d565b60c08301525092915050565b600081359050613b8c8161547f565b92915050565b600081359050613ba181615496565b92915050565b600081359050613bb6816154ad565b92915050565b600060208284031215613bce57600080fd5b6000613bdc848285016139cb565b91505092915050565b60008060408385031215613bf857600080fd5b6000613c06858286016139cb565b9250506020613c17858286016139cb565b9150509250929050565b600080600060608486031215613c3657600080fd5b6000613c44868287016139cb565b9350506020613c55868287016139cb565b9250506040613c6686828701613b92565b9150509250925092565b60008060008060808587031215613c8657600080fd5b6000613c94878288016139cb565b9450506020613ca5878288016139cb565b9350506040613cb687828801613b92565b925050606085013567ffffffffffffffff811115613cd357600080fd5b613cdf87828801613a49565b91505092959194509250565b60008060408385031215613cfe57600080fd5b6000613d0c858286016139cb565b9250506020613d1d85828601613a0a565b9150509250929050565b60008060408385031215613d3a57600080fd5b6000613d48858286016139cb565b9250506020613d5985828601613b92565b9150509250929050565b600060208284031215613d7557600080fd5b600082013567ffffffffffffffff811115613d8f57600080fd5b613d9b848285016139e0565b91505092915050565b600060208284031215613db657600080fd5b6000613dc484828501613a1f565b91505092915050565b600060208284031215613ddf57600080fd5b6000613ded84828501613a34565b91505092915050565b600060208284031215613e0857600080fd5b600082013567ffffffffffffffff811115613e2257600080fd5b613e2e84828501613a73565b91505092915050565b600060208284031215613e4957600080fd5b600082013567ffffffffffffffff811115613e6357600080fd5b613e6f84828501613a9d565b91505092915050565b600060208284031215613e8a57600080fd5b6000613e9884828501613b92565b91505092915050565b6000613ead8383614499565b60208301905092915050565b613ec281614c04565b82525050565b613ed181614c04565b82525050565b6000613ee282614a3e565b613eec8185614a6c565b9350613ef783614a19565b8060005b83811015613f28578151613f0f8882613ea1565b9750613f1a83614a5f565b925050600181019050613efb565b5085935050505092915050565b613f3e81614c16565b82525050565b6000613f4f82614a49565b613f598185614a7d565b9350613f69818560208601614ca2565b613f7281614e3d565b840191505092915050565b6000613f8882614a54565b613f928185614a8e565b9350613fa2818560208601614ca2565b613fab81614e3d565b840191505092915050565b6000613fc182614a54565b613fcb8185614a9f565b9350613fdb818560208601614ca2565b613fe481614e3d565b840191505092915050565b6000613ffa82614a54565b6140048185614ab0565b9350614014818560208601614ca2565b80840191505092915050565b6000815461402d81614cd5565b6140378186614ab0565b94506001821660008114614052576001811461406357614096565b60ff19831686528186019350614096565b61406c85614a29565b60005b8381101561408e5781548189015260018201915060208101905061406f565b838801955050505b50505092915050565b60006140ac602383614a9f565b91506140b782614e4e565b604082019050919050565b60006140cf603283614a9f565b91506140da82614e9d565b604082019050919050565b60006140f2602683614a9f565b91506140fd82614eec565b604082019050919050565b6000614115601c83614a9f565b915061412082614f3b565b602082019050919050565b6000614138601983614a9f565b915061414382614f64565b602082019050919050565b600061415b602483614a9f565b915061416682614f8d565b604082019050919050565b600061417e601983614a9f565b915061418982614fdc565b602082019050919050565b60006141a1602c83614a9f565b91506141ac82615005565b604082019050919050565b60006141c4601f83614a9f565b91506141cf82615054565b602082019050919050565b60006141e7603883614a9f565b91506141f28261507d565b604082019050919050565b600061420a601a83614a9f565b9150614215826150cc565b602082019050919050565b600061422d602a83614a9f565b9150614238826150f5565b604082019050919050565b6000614250602983614a9f565b915061425b82615144565b604082019050919050565b6000614273601483614a9f565b915061427e82615193565b602082019050919050565b6000614296602083614a9f565b91506142a1826151bc565b602082019050919050565b60006142b9602c83614a9f565b91506142c4826151e5565b604082019050919050565b60006142dc602083614a9f565b91506142e782615234565b602082019050919050565b60006142ff602983614a9f565b915061430a8261525d565b604082019050919050565b6000614322600d83614a9f565b915061432d826152ac565b602082019050919050565b6000614345602183614a9f565b9150614350826152d5565b604082019050919050565b6000614368603183614a9f565b915061437382615324565b604082019050919050565b600061438b601d83614a9f565b915061439682615373565b602082019050919050565b60006143ae602183614a9f565b91506143b98261539c565b604082019050919050565b60006143d1603083614a9f565b91506143dc826153eb565b604082019050919050565b600060e08301600083015184820360008601526144048282613f7d565b91505060208301516144196020860182614499565b50604083015184820360408601526144318282613f7d565b91505060608301516144466060860182613eb9565b50608083015161445960808601826144b7565b5060a083015161446c60a086018261448a565b5060c083015161447f60c086018261448a565b508091505092915050565b61449381614c4e565b82525050565b6144a281614c7c565b82525050565b6144b181614c7c565b82525050565b6144c081614c86565b82525050565b60006144d28284613fef565b915081905092915050565b60006144e98285614020565b91506144f58284613fef565b91508190509392505050565b600061450d8285614020565b91506145198284614020565b91508190509392505050565b600060208201905061453a6000830184613ec8565b92915050565b60006080820190506145556000830187613ec8565b6145626020830186613ec8565b61456f60408301856144a8565b81810360608301526145818184613f44565b905095945050505050565b600060208201905081810360008301526145a68184613ed7565b905092915050565b60006020820190506145c36000830184613f35565b92915050565b600060208201905081810360008301526145e38184613fb6565b905092915050565b600060608201905081810360008301526146058186613fb6565b90506146146020830185613ec8565b61462160408301846144a8565b949350505050565b600060208201905081810360008301526146428161409f565b9050919050565b60006020820190508181036000830152614662816140c2565b9050919050565b60006020820190508181036000830152614682816140e5565b9050919050565b600060208201905081810360008301526146a281614108565b9050919050565b600060208201905081810360008301526146c28161412b565b9050919050565b600060208201905081810360008301526146e28161414e565b9050919050565b6000602082019050818103600083015261470281614171565b9050919050565b6000602082019050818103600083015261472281614194565b9050919050565b60006020820190508181036000830152614742816141b7565b9050919050565b60006020820190508181036000830152614762816141da565b9050919050565b60006020820190508181036000830152614782816141fd565b9050919050565b600060208201905081810360008301526147a281614220565b9050919050565b600060208201905081810360008301526147c281614243565b9050919050565b600060208201905081810360008301526147e281614266565b9050919050565b6000602082019050818103600083015261480281614289565b9050919050565b60006020820190508181036000830152614822816142ac565b9050919050565b60006020820190508181036000830152614842816142cf565b9050919050565b60006020820190508181036000830152614862816142f2565b9050919050565b6000602082019050818103600083015261488281614315565b9050919050565b600060208201905081810360008301526148a281614338565b9050919050565b600060208201905081810360008301526148c28161435b565b9050919050565b600060208201905081810360008301526148e28161437e565b9050919050565b60006020820190508181036000830152614902816143a1565b9050919050565b60006020820190508181036000830152614922816143c4565b9050919050565b6000602082019050818103600083015261494381846143e7565b905092915050565b600060208201905061496060008301846144a8565b92915050565b6000614970614981565b905061497c8282614d07565b919050565b6000604051905090565b600067ffffffffffffffff8211156149a6576149a5614e0e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149d2576149d1614e0e565b5b6149db82614e3d565b9050602081019050919050565b600067ffffffffffffffff821115614a0357614a02614e0e565b5b614a0c82614e3d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ac682614c7c565b9150614ad183614c7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0657614b05614d81565b5b828201905092915050565b6000614b1c82614c7c565b9150614b2783614c7c565b925082614b3757614b36614db0565b5b828204905092915050565b6000614b4d82614c7c565b9150614b5883614c7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9157614b90614d81565b5b828202905092915050565b6000614ba782614c4e565b9150614bb283614c4e565b925082821015614bc557614bc4614d81565b5b828203905092915050565b6000614bdb82614c7c565b9150614be683614c7c565b925082821015614bf957614bf8614d81565b5b828203905092915050565b6000614c0f82614c5c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614cc0578082015181840152602081019050614ca5565b83811115614ccf576000848401525b50505050565b60006002820490506001821680614ced57607f821691505b60208210811415614d0157614d00614ddf565b5b50919050565b614d1082614e3d565b810181811067ffffffffffffffff82111715614d2f57614d2e614e0e565b5b80604052505050565b6000614d4382614c7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7657614d75614d81565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f534b55206e6f7420666f756e6420666f722070726f766964656420746f6b656e60008201527f2049640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f204e465473206c65667420666f72207468697320534b5500000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e74204554482073656e7420666f7220426f78656c00600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f534b55206e6f7420666f756e6420666f7220746f6b656e204944000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f534b552063616e206e6f7420626520656d707479000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f534b55206e6f7420666f756e6400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f534b5520646f6573206e6f7420657869737420696e20636174616c6f67000000600082015250565b7f546f6b656e2077697468207468697320494420646f6573206e6f74206578697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61544381614c04565b811461544e57600080fd5b50565b61545a81614c16565b811461546557600080fd5b50565b61547181614c22565b811461547c57600080fd5b50565b61548881614c4e565b811461549357600080fd5b50565b61549f81614c7c565b81146154aa57600080fd5b50565b6154b681614c86565b81146154c157600080fd5b5056fea26469706673582212207e028062d4ff51594bb6aca7e8a6f27cf3e004e06eaef70e1c53107afde8a2bc64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a436f6d6963426f78656c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f4d424f5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53534758674e6a43547a44467337556569476678363278744c484d6f65724b624e476372514d437977566974000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610675578063f2fde38b146106b2578063fc178dab146106db578063fc1c767914610718576101cd565b8063c87b56dd146105bb578063cfed20bc146105f8578063e156076614610621578063e8a3d4851461064a576101cd565b806395d89b41116100d157806395d89b4114610501578063a22cb4651461052c578063b520fa8f14610555578063b88d4fde14610592576101cd565b8063715018a6146104965780638da5cb5b146104ad578063938e3d7b146104d8576101cd565b806342842e0e1161016f57806362e2eff01161013e57806362e2eff0146103b45780636352211e146103f157806370a082311461042e578063714c53981461046b576101cd565b806342842e0e1461031d57806342966c681461034657806355f804b31461036f5780635f62e8dd14610398576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806323b872dd146102a057806328e3802c146102c95780633ccfd60b14610306576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613da4565b610741565b60405161020691906145ae565b60405180910390f35b34801561021b57600080fd5b50610224610823565b60405161023191906145c9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613e78565b6108b5565b60405161026e9190614525565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613d27565b61093a565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190613c21565b610a52565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190613e78565b610ab2565b6040516102fd91906145c9565b60405180910390f35b34801561031257600080fd5b5061031b610bd3565b005b34801561032957600080fd5b50610344600480360381019061033f9190613c21565b610c9e565b005b34801561035257600080fd5b5061036d60048036038101906103689190613e78565b610cbe565b005b34801561037b57600080fd5b5061039660048036038101906103919190613df6565b610d1a565b005b6103b260048036038101906103ad9190613df6565b610db0565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613df6565b61126e565b6040516103e89190614929565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190613e78565b611552565b6040516104259190614525565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190613bbc565b611604565b604051610462919061494b565b60405180910390f35b34801561047757600080fd5b506104806116bc565b60405161048d91906145c9565b60405180910390f35b3480156104a257600080fd5b506104ab6117ca565b005b3480156104b957600080fd5b506104c2611852565b6040516104cf9190614525565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190613df6565b61187c565b005b34801561050d57600080fd5b50610516611912565b60405161052391906145c9565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613ceb565b6119a4565b005b34801561056157600080fd5b5061057c60048036038101906105779190613e78565b611b25565b6040516105899190614929565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613c70565b611c9f565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190613e78565b611d01565b6040516105ef91906145c9565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613d63565b61206e565b005b34801561062d57600080fd5b5061064860048036038101906106439190613df6565b61232e565b005b34801561065657600080fd5b5061065f61272e565b60405161066c91906145c9565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190613be5565b612759565b6040516106a991906145ae565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613bbc565b6127ed565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613df6565b6128e5565b60405161070f919061458c565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190613e37565b6129d7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081c575061081b82612bb7565b5b9050919050565b60606000805461083290614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90614cd5565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c082612c21565b6108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690614809565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094582611552565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90614889565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d5612c8d565b73ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03816109fe612c8d565b612759565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90614749565b60405180910390fd5b610a4d8383612c95565b505050565b610a63610a5d612c8d565b82612d4e565b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906148a9565b60405180910390fd5b610aad838383612e2c565b505050565b6060610abc612c8d565b73ffffffffffffffffffffffffffffffffffffffff16610ada611852565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790614829565b60405180910390fd5b600960008381526020019081526020016000208054610b4e90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a90614cd5565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b50505050509050919050565b610bdb612c8d565b73ffffffffffffffffffffffffffffffffffffffff16610bf9611852565b73ffffffffffffffffffffffffffffffffffffffff1614610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690614829565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c9a573d6000803e3d6000fd5b5050565b610cb983838360405180602001604052806000815250611c9f565b505050565b610ccf610cc9612c8d565b82612d4e565b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590614909565b60405180910390fd5b610d1781613088565b50565b610d22612c8d565b73ffffffffffffffffffffffffffffffffffffffff16610d40611852565b73ffffffffffffffffffffffffffffffffffffffff1614610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90614829565b60405180910390fd5b80600b9080519060200190610dac9291906137c8565b5050565b6000600882604051610dc291906144c6565b90815260200160405180910390206040518060e0016040529081600082018054610deb90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790614cd5565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050815260200160018201548152602001600282018054610e8790614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390614cd5565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff1681525050905060008160000151511415611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906148c9565b60405180910390fd5b60008160c0015161ffff1611611052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611049906146a9565b60405180910390fd5b8060200151341015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614729565b60405180910390fd5b6110a36007613199565b60006110af60076131af565b90506110bb33826131bd565b6110c4826131db565b60018260c001516110d59190614b9c565b8260c0019061ffff16908161ffff1681525050816008846040516110f991906144c6565b908152602001604051809103902060008201518160000190805190602001906111239291906137c8565b5060208201518160010155604082015181600201908051906020019061114a9291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff160217905550905050826009600083815260200190815260200160002090805190602001906112239291906137c8565b50600a8360405161123491906144c6565b9081526020016040518091039020819080600181540180825580915050600190039060005260206000200160009091909190915055505050565b61127661384e565b61127e612c8d565b73ffffffffffffffffffffffffffffffffffffffff1661129c611852565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990614829565b60405180910390fd5b600060088360405161130491906144c6565b90815260200160405180910390206040518060e001604052908160008201805461132d90614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461135990614cd5565b80156113a65780601f1061137b576101008083540402835291602001916113a6565b820191906000526020600020905b81548152906001019060200180831161138957829003601f168201915b50505050508152602001600182015481526020016002820180546113c990614cd5565b80601f01602080910402602001604051908101604052809291908181526020018280546113f590614cd5565b80156114425780601f1061141757610100808354040283529160200191611442565b820191906000526020600020905b81548152906001019060200180831161142557829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff1681525050905060008160000151511415611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090614869565b60405180910390fd5b80915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906147a9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614789565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606116c6612c8d565b73ffffffffffffffffffffffffffffffffffffffff166116e4611852565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190614829565b60405180910390fd5b600b805461174790614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461177390614cd5565b80156117c05780601f10611795576101008083540402835291602001916117c0565b820191906000526020600020905b8154815290600101906020018083116117a357829003601f168201915b5050505050905090565b6117d2612c8d565b73ffffffffffffffffffffffffffffffffffffffff166117f0611852565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90614829565b60405180910390fd5b61185060006132a2565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611884612c8d565b73ffffffffffffffffffffffffffffffffffffffff166118a2611852565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90614829565b60405180910390fd5b80600c908051906020019061190e9291906137c8565b5050565b60606001805461192190614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461194d90614cd5565b801561199a5780601f1061196f5761010080835404028352916020019161199a565b820191906000526020600020905b81548152906001019060200180831161197d57829003601f168201915b5050505050905090565b6119ac612c8d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a11906146e9565b60405180910390fd5b8060056000611a27612c8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad4612c8d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1991906145ae565b60405180910390a35050565b611b2d61384e565b611b35612c8d565b73ffffffffffffffffffffffffffffffffffffffff16611b53611852565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614829565b60405180910390fd5b6000600960008481526020019081526020016000208054611bc990614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf590614cd5565b8015611c425780601f10611c1757610100808354040283529160200191611c42565b820191906000526020600020905b815481529060010190602001808311611c2557829003601f168201915b50505050509050600081511415611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590614629565b60405180910390fd5b611c978161126e565b915050919050565b611cb0611caa612c8d565b83612d4e565b611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce6906148a9565b60405180910390fd5b611cfb84848484613368565b50505050565b6060611d0c82612c21565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906148e9565b60405180910390fd5b6000600960008481526020019081526020016000208054611d6b90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9790614cd5565b8015611de45780601f10611db957610100808354040283529160200191611de4565b820191906000526020600020905b815481529060010190602001808311611dc757829003601f168201915b50505050509050600081511415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790614769565b60405180910390fd5b6000600882604051611e4291906144c6565b90815260200160405180910390206040518060e0016040529081600082018054611e6b90614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9790614cd5565b8015611ee45780601f10611eb957610100808354040283529160200191611ee4565b820191906000526020600020905b815481529060010190602001808311611ec757829003601f168201915b5050505050815260200160018201548152602001600282018054611f0790614cd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3390614cd5565b8015611f805780601f10611f5557610100808354040283529160200191611f80565b820191906000526020600020905b815481529060010190602001808311611f6357829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff16815250509050600b81604001516040516020016120569291906144dd565b60405160208183030381529060405292505050919050565b612076612c8d565b73ffffffffffffffffffffffffffffffffffffffff16612094611852565b73ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190614829565b60405180910390fd5b60005b815181101561232a576000828281518110612131577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015151141561217f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612176906147c9565b60405180910390fd5b8181815181106121b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160088383815181106121fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015160405161221491906144c6565b9081526020016040518091039020600082015181600001908051906020019061223e9291906137c8565b506020820151816001015560408201518160020190805190602001906122659291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff160217905550905050808061232290614d38565b9150506120ed565b5050565b612336612c8d565b73ffffffffffffffffffffffffffffffffffffffff16612354611852565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190614829565b60405180910390fd5b60006008826040516123bc91906144c6565b90815260200160405180910390206040518060e00160405290816000820180546123e590614cd5565b80601f016020809104026020016040519081016040528092919081815260200182805461241190614cd5565b801561245e5780601f106124335761010080835404028352916020019161245e565b820191906000526020600020905b81548152906001019060200180831161244157829003601f168201915b505050505081526020016001820154815260200160028201805461248190614cd5565b80601f01602080910402602001604051908101604052809291908181526020018280546124ad90614cd5565b80156124fa5780601f106124cf576101008083540402835291602001916124fa565b820191906000526020600020905b8154815290600101906020018083116124dd57829003601f168201915b505050505081526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160149054906101000a900460ff1660ff1660ff1681526020016003820160159054906101000a900461ffff1661ffff1661ffff1681526020016003820160179054906101000a900461ffff1661ffff1661ffff1681525050905060008160000151511415612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890614869565b60405180910390fd5b60008160c0019061ffff16908161ffff16815250508060088360405161262791906144c6565b908152602001604051809103902060008201518160000190805190602001906126519291906137c8565b506020820151816001015560408201518160020190805190602001906126789291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff1602179055509050505050565b6060600b600c604051602001612745929190614501565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127f5612c8d565b73ffffffffffffffffffffffffffffffffffffffff16612813611852565b73ffffffffffffffffffffffffffffffffffffffff1614612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d090614669565b60405180910390fd5b6128e2816132a2565b50565b60606128ef612c8d565b73ffffffffffffffffffffffffffffffffffffffff1661290d611852565b73ffffffffffffffffffffffffffffffffffffffff1614612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295a90614829565b60405180910390fd5b600a8260405161297391906144c6565b90815260200160405180910390208054806020026020016040519081016040528092919081815260200182805480156129cb57602002820191906000526020600020905b8154815260200190600101908083116129b7575b50505050509050919050565b6129df612c8d565b73ffffffffffffffffffffffffffffffffffffffff166129fd611852565b73ffffffffffffffffffffffffffffffffffffffff1614612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614829565b60405180910390fd5b60008160000151511415612a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a93906147c9565b60405180910390fd5b8060088260000151604051612ab191906144c6565b90815260200160405180910390206000820151816000019080519060200190612adb9291906137c8565b50602082015181600101556040820151816002019080519060200190612b029291906137c8565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160030160146101000a81548160ff021916908360ff16021790555060a08201518160030160156101000a81548161ffff021916908361ffff16021790555060c08201518160030160176101000a81548161ffff021916908361ffff16021790555090505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d0883611552565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d5982612c21565b612d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8f90614709565b60405180910390fd5b6000612da383611552565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e1257508373ffffffffffffffffffffffffffffffffffffffff16612dfa846108b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e235750612e228185612759565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e4c82611552565b73ffffffffffffffffffffffffffffffffffffffff1614612ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9990614849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f09906146c9565b60405180910390fd5b612f1d8383836133c4565b612f28600082612c95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f789190614bd0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fcf9190614abb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061309382611552565b90506130a1816000846133c4565b6130ac600083612c95565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130fc9190614bd0565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6131d78282604051806020016040528060008152506133c9565b5050565b600061320e6064613200846080015160ff16856020015161342490919063ffffffff16565b61343a90919063ffffffff16565b9050816060015173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561325a573d6000803e3d6000fd5b507fa4d0d876b730b913e8c4d9870a8e9fa0bbfdb2e1edb29278ec445c3640a17c3c8260000151836060015183604051613296939291906145eb565b60405180910390a15050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613373848484612e2c565b61337f84848484613450565b6133be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b590614649565b60405180910390fd5b50505050565b505050565b6133d383836135e7565b6133e06000848484613450565b61341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341690614649565b60405180910390fd5b505050565b600081836134329190614b42565b905092915050565b600081836134489190614b11565b905092915050565b60006134718473ffffffffffffffffffffffffffffffffffffffff166137b5565b156135da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261349a612c8d565b8786866040518563ffffffff1660e01b81526004016134bc9493929190614540565b602060405180830381600087803b1580156134d657600080fd5b505af192505050801561350757506040513d601f19601f820116820180604052508101906135049190613dcd565b60015b61358a573d8060008114613537576040519150601f19603f3d011682016040523d82523d6000602084013e61353c565b606091505b50600081511415613582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357990614649565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135df565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364e906147e9565b60405180910390fd5b61366081612c21565b156136a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369790614689565b60405180910390fd5b6136ac600083836133c4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136fc9190614abb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137d490614cd5565b90600052602060002090601f0160209004810192826137f6576000855561383d565b82601f1061380f57805160ff191683800117855561383d565b8280016001018555821561383d579182015b8281111561383c578251825591602001919060010190613821565b5b50905061384a91906138ac565b5090565b6040518060e00160405280606081526020016000815260200160608152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600060ff168152602001600061ffff168152602001600061ffff1681525090565b5b808211156138c55760008160009055506001016138ad565b5090565b60006138dc6138d78461498b565b614966565b905080838252602082019050828560208602820111156138fb57600080fd5b60005b8581101561394557813567ffffffffffffffff81111561391d57600080fd5b80860161392a8982613a9d565b855260208501945060208401935050506001810190506138fe565b5050509392505050565b600061396261395d846149b7565b614966565b90508281526020810184848401111561397a57600080fd5b613985848285614c93565b509392505050565b60006139a061399b846149e8565b614966565b9050828152602081018484840111156139b857600080fd5b6139c3848285614c93565b509392505050565b6000813590506139da8161543a565b92915050565b600082601f8301126139f157600080fd5b8135613a018482602086016138c9565b91505092915050565b600081359050613a1981615451565b92915050565b600081359050613a2e81615468565b92915050565b600081519050613a4381615468565b92915050565b600082601f830112613a5a57600080fd5b8135613a6a84826020860161394f565b91505092915050565b600082601f830112613a8457600080fd5b8135613a9484826020860161398d565b91505092915050565b600060e08284031215613aaf57600080fd5b613ab960e0614966565b9050600082013567ffffffffffffffff811115613ad557600080fd5b613ae184828501613a73565b6000830152506020613af584828501613b92565b602083015250604082013567ffffffffffffffff811115613b1557600080fd5b613b2184828501613a73565b6040830152506060613b35848285016139cb565b6060830152506080613b4984828501613ba7565b60808301525060a0613b5d84828501613b7d565b60a08301525060c0613b7184828501613b7d565b60c08301525092915050565b600081359050613b8c8161547f565b92915050565b600081359050613ba181615496565b92915050565b600081359050613bb6816154ad565b92915050565b600060208284031215613bce57600080fd5b6000613bdc848285016139cb565b91505092915050565b60008060408385031215613bf857600080fd5b6000613c06858286016139cb565b9250506020613c17858286016139cb565b9150509250929050565b600080600060608486031215613c3657600080fd5b6000613c44868287016139cb565b9350506020613c55868287016139cb565b9250506040613c6686828701613b92565b9150509250925092565b60008060008060808587031215613c8657600080fd5b6000613c94878288016139cb565b9450506020613ca5878288016139cb565b9350506040613cb687828801613b92565b925050606085013567ffffffffffffffff811115613cd357600080fd5b613cdf87828801613a49565b91505092959194509250565b60008060408385031215613cfe57600080fd5b6000613d0c858286016139cb565b9250506020613d1d85828601613a0a565b9150509250929050565b60008060408385031215613d3a57600080fd5b6000613d48858286016139cb565b9250506020613d5985828601613b92565b9150509250929050565b600060208284031215613d7557600080fd5b600082013567ffffffffffffffff811115613d8f57600080fd5b613d9b848285016139e0565b91505092915050565b600060208284031215613db657600080fd5b6000613dc484828501613a1f565b91505092915050565b600060208284031215613ddf57600080fd5b6000613ded84828501613a34565b91505092915050565b600060208284031215613e0857600080fd5b600082013567ffffffffffffffff811115613e2257600080fd5b613e2e84828501613a73565b91505092915050565b600060208284031215613e4957600080fd5b600082013567ffffffffffffffff811115613e6357600080fd5b613e6f84828501613a9d565b91505092915050565b600060208284031215613e8a57600080fd5b6000613e9884828501613b92565b91505092915050565b6000613ead8383614499565b60208301905092915050565b613ec281614c04565b82525050565b613ed181614c04565b82525050565b6000613ee282614a3e565b613eec8185614a6c565b9350613ef783614a19565b8060005b83811015613f28578151613f0f8882613ea1565b9750613f1a83614a5f565b925050600181019050613efb565b5085935050505092915050565b613f3e81614c16565b82525050565b6000613f4f82614a49565b613f598185614a7d565b9350613f69818560208601614ca2565b613f7281614e3d565b840191505092915050565b6000613f8882614a54565b613f928185614a8e565b9350613fa2818560208601614ca2565b613fab81614e3d565b840191505092915050565b6000613fc182614a54565b613fcb8185614a9f565b9350613fdb818560208601614ca2565b613fe481614e3d565b840191505092915050565b6000613ffa82614a54565b6140048185614ab0565b9350614014818560208601614ca2565b80840191505092915050565b6000815461402d81614cd5565b6140378186614ab0565b94506001821660008114614052576001811461406357614096565b60ff19831686528186019350614096565b61406c85614a29565b60005b8381101561408e5781548189015260018201915060208101905061406f565b838801955050505b50505092915050565b60006140ac602383614a9f565b91506140b782614e4e565b604082019050919050565b60006140cf603283614a9f565b91506140da82614e9d565b604082019050919050565b60006140f2602683614a9f565b91506140fd82614eec565b604082019050919050565b6000614115601c83614a9f565b915061412082614f3b565b602082019050919050565b6000614138601983614a9f565b915061414382614f64565b602082019050919050565b600061415b602483614a9f565b915061416682614f8d565b604082019050919050565b600061417e601983614a9f565b915061418982614fdc565b602082019050919050565b60006141a1602c83614a9f565b91506141ac82615005565b604082019050919050565b60006141c4601f83614a9f565b91506141cf82615054565b602082019050919050565b60006141e7603883614a9f565b91506141f28261507d565b604082019050919050565b600061420a601a83614a9f565b9150614215826150cc565b602082019050919050565b600061422d602a83614a9f565b9150614238826150f5565b604082019050919050565b6000614250602983614a9f565b915061425b82615144565b604082019050919050565b6000614273601483614a9f565b915061427e82615193565b602082019050919050565b6000614296602083614a9f565b91506142a1826151bc565b602082019050919050565b60006142b9602c83614a9f565b91506142c4826151e5565b604082019050919050565b60006142dc602083614a9f565b91506142e782615234565b602082019050919050565b60006142ff602983614a9f565b915061430a8261525d565b604082019050919050565b6000614322600d83614a9f565b915061432d826152ac565b602082019050919050565b6000614345602183614a9f565b9150614350826152d5565b604082019050919050565b6000614368603183614a9f565b915061437382615324565b604082019050919050565b600061438b601d83614a9f565b915061439682615373565b602082019050919050565b60006143ae602183614a9f565b91506143b98261539c565b604082019050919050565b60006143d1603083614a9f565b91506143dc826153eb565b604082019050919050565b600060e08301600083015184820360008601526144048282613f7d565b91505060208301516144196020860182614499565b50604083015184820360408601526144318282613f7d565b91505060608301516144466060860182613eb9565b50608083015161445960808601826144b7565b5060a083015161446c60a086018261448a565b5060c083015161447f60c086018261448a565b508091505092915050565b61449381614c4e565b82525050565b6144a281614c7c565b82525050565b6144b181614c7c565b82525050565b6144c081614c86565b82525050565b60006144d28284613fef565b915081905092915050565b60006144e98285614020565b91506144f58284613fef565b91508190509392505050565b600061450d8285614020565b91506145198284614020565b91508190509392505050565b600060208201905061453a6000830184613ec8565b92915050565b60006080820190506145556000830187613ec8565b6145626020830186613ec8565b61456f60408301856144a8565b81810360608301526145818184613f44565b905095945050505050565b600060208201905081810360008301526145a68184613ed7565b905092915050565b60006020820190506145c36000830184613f35565b92915050565b600060208201905081810360008301526145e38184613fb6565b905092915050565b600060608201905081810360008301526146058186613fb6565b90506146146020830185613ec8565b61462160408301846144a8565b949350505050565b600060208201905081810360008301526146428161409f565b9050919050565b60006020820190508181036000830152614662816140c2565b9050919050565b60006020820190508181036000830152614682816140e5565b9050919050565b600060208201905081810360008301526146a281614108565b9050919050565b600060208201905081810360008301526146c28161412b565b9050919050565b600060208201905081810360008301526146e28161414e565b9050919050565b6000602082019050818103600083015261470281614171565b9050919050565b6000602082019050818103600083015261472281614194565b9050919050565b60006020820190508181036000830152614742816141b7565b9050919050565b60006020820190508181036000830152614762816141da565b9050919050565b60006020820190508181036000830152614782816141fd565b9050919050565b600060208201905081810360008301526147a281614220565b9050919050565b600060208201905081810360008301526147c281614243565b9050919050565b600060208201905081810360008301526147e281614266565b9050919050565b6000602082019050818103600083015261480281614289565b9050919050565b60006020820190508181036000830152614822816142ac565b9050919050565b60006020820190508181036000830152614842816142cf565b9050919050565b60006020820190508181036000830152614862816142f2565b9050919050565b6000602082019050818103600083015261488281614315565b9050919050565b600060208201905081810360008301526148a281614338565b9050919050565b600060208201905081810360008301526148c28161435b565b9050919050565b600060208201905081810360008301526148e28161437e565b9050919050565b60006020820190508181036000830152614902816143a1565b9050919050565b60006020820190508181036000830152614922816143c4565b9050919050565b6000602082019050818103600083015261494381846143e7565b905092915050565b600060208201905061496060008301846144a8565b92915050565b6000614970614981565b905061497c8282614d07565b919050565b6000604051905090565b600067ffffffffffffffff8211156149a6576149a5614e0e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149d2576149d1614e0e565b5b6149db82614e3d565b9050602081019050919050565b600067ffffffffffffffff821115614a0357614a02614e0e565b5b614a0c82614e3d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ac682614c7c565b9150614ad183614c7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0657614b05614d81565b5b828201905092915050565b6000614b1c82614c7c565b9150614b2783614c7c565b925082614b3757614b36614db0565b5b828204905092915050565b6000614b4d82614c7c565b9150614b5883614c7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9157614b90614d81565b5b828202905092915050565b6000614ba782614c4e565b9150614bb283614c4e565b925082821015614bc557614bc4614d81565b5b828203905092915050565b6000614bdb82614c7c565b9150614be683614c7c565b925082821015614bf957614bf8614d81565b5b828203905092915050565b6000614c0f82614c5c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614cc0578082015181840152602081019050614ca5565b83811115614ccf576000848401525b50505050565b60006002820490506001821680614ced57607f821691505b60208210811415614d0157614d00614ddf565b5b50919050565b614d1082614e3d565b810181811067ffffffffffffffff82111715614d2f57614d2e614e0e565b5b80604052505050565b6000614d4382614c7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7657614d75614d81565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f534b55206e6f7420666f756e6420666f722070726f766964656420746f6b656e60008201527f2049640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f204e465473206c65667420666f72207468697320534b5500000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e74204554482073656e7420666f7220426f78656c00600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f534b55206e6f7420666f756e6420666f7220746f6b656e204944000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f534b552063616e206e6f7420626520656d707479000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f534b55206e6f7420666f756e6400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f534b5520646f6573206e6f7420657869737420696e20636174616c6f67000000600082015250565b7f546f6b656e2077697468207468697320494420646f6573206e6f74206578697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61544381614c04565b811461544e57600080fd5b50565b61545a81614c16565b811461546557600080fd5b50565b61547181614c22565b811461547c57600080fd5b50565b61548881614c4e565b811461549357600080fd5b50565b61549f81614c7c565b81146154aa57600080fd5b50565b6154b681614c86565b81146154c157600080fd5b5056fea26469706673582212207e028062d4ff51594bb6aca7e8a6f27cf3e004e06eaef70e1c53107afde8a2bc64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a436f6d6963426f78656c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f4d424f5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53534758674e6a43547a44467337556569476678363278744c484d6f65724b624e476372514d437977566974000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ComicBoxel
Arg [1] : symbol (string): COMBOX
Arg [2] : newBaseURI (string): ipfs://
Arg [3] : newContractURI (string): QmSSGXgNjCTzDFs7UeiGfx62xtLHMoerKbNGcrQMCywVit

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 436f6d6963426f78656c00000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 434f4d424f580000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [11] : 516d53534758674e6a43547a44467337556569476678363278744c484d6f6572
Arg [12] : 4b624e476372514d437977566974000000000000000000000000000000000000


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.