ETH Price: $3,388.45 (-1.55%)
Gas: 2 Gwei

Token

LONDON Embers (EMBERS)
 

Overview

Max Total Supply

0 EMBERS

Holders

343

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*muimui🐈️.eth
Balance
15 EMBERS
0x587a533ae239db6d5efad5b9906a4a4b2803951b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Celebrating Ethereum's future w/ gen-art.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LondonBurn

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./ERC721.sol";
import "./Ownable.sol";
import "./utils/Signature.sol";

contract LondonBurn is Ownable, ERC721, Signature {

    address public mintingAuthority;
    address public minter;
    string public contractURI;

    mapping(uint256 => string) public tokenIdToUri;
    mapping(uint256 => uint256) public tokenTypeSupply;

    mapping(bytes32 => uint256) contentHashToTokenId;

    string public baseMetadataURI;

    struct MintCheck {
      address to;
      uint256 tokenType;
      string[] uris;
      bytes signature;
    }

    struct ModifyCheck {
      uint256[] tokenIds;
      string[] uris;
      bytes signature;
    }

    // events
    event MintCheckUsed(uint256 indexed tokenId, bytes32 indexed mintCheck);
    event ModifyCheckUsed(uint256 indexed tokenId, bytes32 indexed modifyCheck);
    
    constructor (
      string memory name_,
      string memory symbol_
    ) ERC721(name_, symbol_) {
    }

    function setContractURI(string calldata newContractURI) external onlyOwner {
        contractURI = newContractURI;
    }

    function setMinter(address _minter) external onlyOwner {
        minter = _minter;
    }

    function setMintingAuthority(address _mintingAuthority) external onlyOwner {
      mintingAuthority = _mintingAuthority;
    }

    modifier onlyMinter() {
        require(minter == _msgSender(), "Caller is not the minter");
        _;
    }

    function setBaseMetadataURI(string memory _baseMetadataURI) public onlyOwner {
      baseMetadataURI = _baseMetadataURI;
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        require(abi.encodePacked(tokenIdToUri[tokenId]).length != 0, "ERC721Metadata: URI query for nonexistent token URI");

        return string(abi.encodePacked(_baseURI(), tokenIdToUri[tokenId]));
    }

   function getMintCheckHash(MintCheck calldata _mintCheck) public pure returns (bytes32) {
      bytes memory input = abi.encodePacked(_mintCheck.to, _mintCheck.tokenType);
      for (uint i = 0; i < _mintCheck.uris.length; ++i) {
        input = abi.encodePacked(input, _mintCheck.uris[i]);
      }
      return keccak256(input);
    }

    function verifyMintCheck(
      MintCheck calldata _mintCheck
    ) public view returns (bool) {
      bytes32 signedHash = getMintCheckHash(_mintCheck);
      (bytes32 r, bytes32 s, uint8 v) = splitSignature(_mintCheck.signature);
      return isSigned(mintingAuthority, signedHash, v, r, s);
    }


    function mintTokenType(MintCheck calldata _mintCheck) external onlyMinter {
      bytes32 mintCheckHash = getMintCheckHash(_mintCheck);
      (bytes32 r, bytes32 s, uint8 v) = splitSignature(_mintCheck.signature);
      require(isSigned(mintingAuthority, mintCheckHash, v, r, s), "Mint check is not valid");

      for (uint i = 0; i < _mintCheck.uris.length; ++i) {
        bytes32 contentHash = keccak256(abi.encodePacked(_mintCheck.uris[i]));
        require(contentHashToTokenId[contentHash] == 0, "Mint check has already been used");
        uint tokenId = (_mintCheck.tokenType | ++tokenTypeSupply[_mintCheck.tokenType]);
        _mint(_mintCheck.to, tokenId);
        tokenIdToUri[tokenId] = _mintCheck.uris[i];
        contentHashToTokenId[contentHash] = tokenId;
        emit MintCheckUsed(tokenId, mintCheckHash);
      }
    }

    function getModifyCheckHash(ModifyCheck calldata _modifyCheck) public pure returns (bytes32) {
      bytes memory input = abi.encodePacked("");
      for (uint i = 0; i < _modifyCheck.tokenIds.length; ++i) {
        input = abi.encodePacked(input, _modifyCheck.tokenIds[i]);
      }
      for (uint i = 0; i < _modifyCheck.uris.length; ++i) {
        input = abi.encodePacked(input, _modifyCheck.uris[i]);
      }
      return keccak256(input);
    }

    function verifyModifyCheck(
      ModifyCheck calldata _modifyCheck
    ) public view returns (bool) {
      bytes32 signedHash = getModifyCheckHash(_modifyCheck);
      (bytes32 r, bytes32 s, uint8 v) = splitSignature(_modifyCheck.signature);
      return isSigned(mintingAuthority, signedHash, v, r, s);
    }

    function modifyBaseURIByModifyCheck(ModifyCheck calldata _modifyCheck) external {
      require(_modifyCheck.tokenIds.length == _modifyCheck.uris.length, "tokenIds mismatch with uris");
      bytes32 modifyCheckHash = getModifyCheckHash(_modifyCheck);
      (bytes32 r, bytes32 s, uint8 v) = splitSignature(_modifyCheck.signature);
      require(isSigned(mintingAuthority, modifyCheckHash, v, r, s), "Modify check is not valid");

      for (uint i = 0; i < _modifyCheck.tokenIds.length; ++i) {
        bytes32 contentHash = keccak256(abi.encodePacked(_modifyCheck.uris[i]));
        require(contentHashToTokenId[contentHash] == 0, "Modify check has already been used");
        require(_exists(_modifyCheck.tokenIds[i]), "Tokenid does not exist");
        tokenIdToUri[_modifyCheck.tokenIds[i]] = _modifyCheck.uris[i];
        contentHashToTokenId[contentHash] = _modifyCheck.tokenIds[i];
        emit MintCheckUsed(_modifyCheck.tokenIds[i], modifyCheckHash);
      }
    }
}

File 2 of 15 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./interface/IERC20.sol";
import "./interface/IERC20Metadata.sol";
import "./utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount) internal virtual { }
}

File 3 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./interface/IERC721.sol";
import "./interface/IERC721Receiver.sol";
import "./interface/IERC721Metadata.sol";
import "./utils/Address.sol";
import "./utils/Context.sol";
import "./utils/Strings.sol";
import "./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 4 of 15 : 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 5 of 15 : Signature.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Signature {
  function splitSignature(bytes memory sig)
      public pure returns (bytes32 r, bytes32 s, uint8 v)
  {
      require(sig.length == 65, "invalid signature length");

      assembly {
          r := mload(add(sig, 32))
          s := mload(add(sig, 64))
          v := byte(0, mload(add(sig, 96)))
      }

      if (v < 27) v += 27;
  }

  function isSigned(address _address, bytes32 messageHash, uint8 v, bytes32 r, bytes32 s) public pure returns (bool) {
      return _isSigned(_address, messageHash, v, r, s) || _isSignedPrefixed(_address, messageHash, v, r, s);
  }

  function _isSigned(address _address, bytes32 messageHash, uint8 v, bytes32 r, bytes32 s)
      internal pure returns (bool)
  {
      return ecrecover(messageHash, v, r, s) == _address;
  }

  function _isSignedPrefixed(address _address, bytes32 messageHash, uint8 v, bytes32 r, bytes32 s)
      internal pure returns (bool)
  {
      bytes memory prefix = "\x19Ethereum Signed Message:\n32";
      return _isSigned(_address, keccak256(abi.encodePacked(prefix, messageHash)), v, r, s);
  }
  
}

File 6 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 7 of 15 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 15 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 9 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 15 : 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 11 of 15 : 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 12 of 15 : 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 13 of 15 : 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);
    }

    function toHexStringWithColorPrefix(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 1);
        buffer[0] = "#";
        for (uint256 i = 2 * length; i > 0; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

pragma solidity ^0.8.0;

import "./interface/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 15 of 15 : 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",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"mintCheck","type":"bytes32"}],"name":"MintCheckUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"modifyCheck","type":"bytes32"}],"name":"ModifyCheckUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenType","type":"uint256"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct LondonBurn.MintCheck","name":"_mintCheck","type":"tuple"}],"name":"getMintCheckHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct LondonBurn.ModifyCheck","name":"_modifyCheck","type":"tuple"}],"name":"getModifyCheckHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"isSigned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenType","type":"uint256"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct LondonBurn.MintCheck","name":"_mintCheck","type":"tuple"}],"name":"mintTokenType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingAuthority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct LondonBurn.ModifyCheck","name":"_modifyCheck","type":"tuple"}],"name":"modifyBaseURIByModifyCheck","outputs":[],"stateMutability":"nonpayable","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":"_baseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mintingAuthority","type":"address"}],"name":"setMintingAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","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":"","type":"uint256"}],"name":"tokenIdToUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenTypeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenType","type":"uint256"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct LondonBurn.MintCheck","name":"_mintCheck","type":"tuple"}],"name":"verifyMintCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct LondonBurn.ModifyCheck","name":"_modifyCheck","type":"tuple"}],"name":"verifyModifyCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620051ba380380620051ba83398181016040528101906200003791906200024f565b818160006200004b6200012560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160019080519060200190620001019291906200012d565b5080600290805190602001906200011a9291906200012d565b505050505062000432565b600033905090565b8280546200013b9062000357565b90600052602060002090601f0160209004810192826200015f5760008555620001ab565b82601f106200017a57805160ff1916838001178555620001ab565b82800160010185558215620001ab579182015b82811115620001aa5782518255916020019190600101906200018d565b5b509050620001ba9190620001be565b5090565b5b80821115620001d9576000816000905550600101620001bf565b5090565b6000620001f4620001ee84620002eb565b620002c2565b9050828152602081018484840111156200020d57600080fd5b6200021a84828562000321565b509392505050565b600082601f8301126200023457600080fd5b815162000246848260208601620001dd565b91505092915050565b600080604083850312156200026357600080fd5b600083015167ffffffffffffffff8111156200027e57600080fd5b6200028c8582860162000222565b925050602083015167ffffffffffffffff811115620002aa57600080fd5b620002b88582860162000222565b9150509250929050565b6000620002ce620002e1565b9050620002dc82826200038d565b919050565b6000604051905090565b600067ffffffffffffffff821115620003095762000308620003f2565b5b620003148262000421565b9050602081019050919050565b60005b838110156200034157808201518184015260208101905062000324565b8381111562000351576000848401525b50505050565b600060028204905060018216806200037057607f821691505b60208210811415620003875762000386620003c3565b5b50919050565b620003988262000421565b810181811067ffffffffffffffff82111715620003ba57620003b9620003f2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d7880620004426000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80637e518ec81161011a578063a7bb5803116100ad578063e8a3d4851161007c578063e8a3d48514610623578063e985e9c514610641578063f2fde38b14610671578063f96e5dfe1461068d578063fca3b5aa146106bd57610206565b8063a7bb580314610589578063b88d4fde146105bb578063bb6fa942146105d7578063c87b56dd146105f357610206565b8063938e3d7b116100e9578063938e3d7b1461050357806395d89b411461051f5780639b6fb5551461053d578063a22cb4651461056d57610206565b80637e518ec81461047d57806385c0eb26146104995780638677ebe8146104b55780638da5cb5b146104e557610206565b80631f1260061161019d57806342842e0e1161016c57806342842e0e146103d95780635b2bd79e146103f55780636352211e1461041357806370a0823114610443578063715018a61461047357610206565b80631f1260061461034157806323b872dd1461035d5780632b25a95314610379578063318e9e28146103a957610206565b8063081812fc116101d9578063081812fc14610295578063095ea7b3146102c5578063119d209a146102e157806318d877171461031157610206565b806301ffc9a71461020b5780630315e9341461023b57806306fdde03146102595780630754617214610277575b600080fd5b61022560048036038101906102209190613462565b6106d9565b6040516102329190613d2e565b60405180910390f35b6102436107bb565b6040516102509190613cc7565b60405180910390f35b6102616107e1565b60405161026e9190613de0565b60405180910390f35b61027f610873565b60405161028c9190613cc7565b60405180910390f35b6102af60048036038101906102aa91906135fd565b610899565b6040516102bc9190613cc7565b60405180910390f35b6102df60048036038101906102da9190613426565b61091e565b005b6102fb60048036038101906102f691906135fd565b610a36565b6040516103089190613de0565b60405180910390f35b61032b600480360381019061032691906135fd565b610ad6565b6040516103389190614122565b60405180910390f35b61035b6004803603810190610356919061357b565b610aee565b005b610377600480360381019061037291906132a9565b610e87565b005b610393600480360381019061038e91906135bc565b610ee7565b6040516103a09190613d2e565b60405180910390f35b6103c360048036038101906103be919061357b565b610f95565b6040516103d09190613d49565b60405180910390f35b6103f360048036038101906103ee91906132a9565b61108d565b005b6103fd6110ad565b60405161040a9190613de0565b60405180910390f35b61042d600480360381019061042891906135fd565b61113b565b60405161043a9190613cc7565b60405180910390f35b61045d60048036038101906104589190613244565b6111ed565b60405161046a9190614122565b60405180910390f35b61047b6112a5565b005b6104976004803603810190610492919061353a565b6113f8565b005b6104b360048036038101906104ae9190613244565b6114a7565b005b6104cf60048036038101906104ca91906133af565b611580565b6040516104dc9190613d2e565b60405180910390f35b6104ed6115ae565b6040516104fa9190613cc7565b60405180910390f35b61051d600480360381019061051891906134f5565b6115d7565b005b610527611682565b6040516105349190613de0565b60405180910390f35b610557600480360381019061055291906135bc565b611714565b6040516105649190613d49565b60405180910390f35b61058760048036038101906105829190613373565b611891565b005b6105a3600480360381019061059e91906134b4565b611a12565b6040516105b293929190613d64565b60405180910390f35b6105d560048036038101906105d091906132f8565b611a96565b005b6105f160048036038101906105ec91906135bc565b611af8565b005b61060d600480360381019061060891906135fd565b611f89565b60405161061a9190613de0565b60405180910390f35b61062b61208b565b6040516106389190613de0565b60405180910390f35b61065b6004803603810190610656919061326d565b612119565b6040516106689190613d2e565b60405180910390f35b61068b60048036038101906106869190613244565b6121ad565b005b6106a760048036038101906106a2919061357b565b61236f565b6040516106b49190613d2e565b60405180910390f35b6106d760048036038101906106d29190613244565b61241d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b457506107b3826124f6565b5b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546107f090614511565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90614511565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108a482612560565b6108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90614002565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109298261113b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610991906140a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b96125cc565b73ffffffffffffffffffffffffffffffffffffffff1614806109e857506109e7816109e26125cc565b612119565b5b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613f82565b60405180910390fd5b610a3183836125d4565b505050565b600a6020528060005260406000206000915090508054610a5590614511565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190614511565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b505050505081565b600b6020528060005260406000206000915090505481565b610af66125cc565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613f62565b60405180910390fd5b6000610b9082610f95565b90506000806000610bf2858060600190610baa91906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250610c27600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90614062565b60405180910390fd5b60005b858060400190610c79919061413d565b9050811015610e7f576000868060400190610c94919061413d565b83818110610ccb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610cdd9190614242565b604051602001610cee929190613c5e565b6040516020818303038152906040528051906020012090506000600c60008381526020019081526020016000205414610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613ec2565b60405180910390fd5b6000600b60008960200135815260200190815260200160002060008154610d8290614574565b9190508190558860200135179050610dac886000016020810190610da69190613244565b8261268d565b878060400190610dbc919061413d565b84818110610df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610e059190614242565b600a60008481526020019081526020016000209190610e25929190612f38565b5080600c60008481526020019081526020016000208190555086817f0f84d23cfca28469f65591a722135f0e3fcc7a7832f88fa90fe84ea5089a86be60405160405180910390a3505080610e7890614574565b9050610c69565b505050505050565b610e98610e926125cc565b8261285b565b610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906140c2565b60405180910390fd5b610ee2838383612939565b505050565b600080610ef383611714565b90506000806000610f55868060400190610f0d91906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250610f8a600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b945050505050919050565b600080826000016020810190610fab9190613244565b8360200135604051602001610fc1929190613bbc565b604051602081830303815290604052905060005b838060400190610fe5919061413d565b905081101561107c5781848060400190610fff919061413d565b83818110611036577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906110489190614242565b60405160200161105a93929190613c10565b60405160208183030381529060405291508061107590614574565b9050610fd5565b508080519060200120915050919050565b6110a883838360405180602001604052806000815250611a96565b505050565b600d80546110ba90614511565b80601f01602080910402602001604051908101604052809291908181526020018280546110e690614511565b80156111335780601f1061110857610100808354040283529160200191611133565b820191906000526020600020905b81548152906001019060200180831161111657829003601f168201915b505050505081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90613fc2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613fa2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ad6125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614022565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114006125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490614022565b60405180910390fd5b80600d90805190602001906114a3929190612fbe565b5050565b6114af6125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614022565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061158f8686868686612b95565b806115a357506115a28686868686612c1f565b5b905095945050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115df6125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390614022565b60405180910390fd5b81816009919061167d929190612f38565b505050565b60606002805461169190614511565b80601f01602080910402602001604051908101604052809291908181526020018280546116bd90614511565b801561170a5780601f106116df5761010080835404028352916020019161170a565b820191906000526020600020905b8154815290600101906020018083116116ed57829003601f168201915b5050505050905090565b60008060405160200161172690613cb2565b604051602081830303815290604052905060005b83806000019061174a9190614194565b90508110156117d557818480600001906117649190614194565b8381811061179b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040516020016117b3929190613c36565b6040516020818303038152906040529150806117ce90614574565b905061173a565b5060005b8380602001906117e9919061413d565b90508110156118805781848060200190611803919061413d565b8381811061183a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200281019061184c9190614242565b60405160200161185e93929190613c10565b60405160208183030381529060405291508061187990614574565b90506117d9565b508080519060200120915050919050565b6118996125cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613f02565b60405180910390fd5b80600660006119146125cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c16125cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a069190613d2e565b60405180910390a35050565b60008060006041845114611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a52906140e2565b60405180910390fd5b6020840151925060408401519150606084015160001a9050601b8160ff161015611a8f57601b81611a8c91906143d9565b90505b9193909250565b611aa7611aa16125cc565b8361285b565b611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906140c2565b60405180910390fd5b611af284848484612c9b565b50505050565b808060200190611b08919061413d565b9050818060000190611b1a9190614194565b905014611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613ea2565b60405180910390fd5b6000611b6782611714565b90506000806000611bc9858060400190611b8191906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250611bfe600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613f22565b60405180910390fd5b60005b858060000190611c509190614194565b9050811015611f81576000868060200190611c6b919061413d565b83818110611ca2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190611cb49190614242565b604051602001611cc5929190613c5e565b6040516020818303038152906040528051906020012090506000600c60008381526020019081526020016000205414611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613e62565b60405180910390fd5b611d89878060000190611d469190614194565b84818110611d7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612560565b611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613e02565b60405180910390fd5b868060200190611dd8919061413d565b83818110611e0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190611e219190614242565b600a60008a8060000190611e359190614194565b87818110611e6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000209190611e8e929190612f38565b50868060000190611e9f9190614194565b83818110611ed6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600c60008381526020019081526020016000208190555085878060000190611f059190614194565b84818110611f3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201357f0f84d23cfca28469f65591a722135f0e3fcc7a7832f88fa90fe84ea5089a86be60405160405180910390a35080611f7a90614574565b9050611c40565b505050505050565b6060611f9482612560565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90614082565b60405180910390fd5b6000600a6000848152602001908152602001600020604051602001611ff89190613c9b565b604051602081830303815290604052511415612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090614102565b60405180910390fd5b612051612cf7565b600a6000848152602001908152602001600020604051602001612075929190613c77565b6040516020818303038152906040529050919050565b6009805461209890614511565b80601f01602080910402602001604051908101604052809291908181526020018280546120c490614511565b80156121115780601f106120e657610100808354040283529160200191612111565b820191906000526020600020905b8154815290600101906020018083116120f457829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121b56125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614022565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a990613e42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061237b83610f95565b905060008060006123dd86806060019061239591906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250612412600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b945050505050919050565b6124256125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614022565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126478361113b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490613fe2565b60405180910390fd5b61270681612560565b15612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90613e82565b60405180910390fd5b61275260008383612d89565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a29190614383565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061286682612560565b6128a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289c90613f42565b60405180910390fd5b60006128b08361113b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291f57508373ffffffffffffffffffffffffffffffffffffffff1661290784610899565b73ffffffffffffffffffffffffffffffffffffffff16145b80612930575061292f8185612119565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129598261113b565b73ffffffffffffffffffffffffffffffffffffffff16146129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614042565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690613ee2565b60405180910390fd5b612a2a838383612d89565b612a356000826125d4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a859190614410565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612adc9190614383565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008573ffffffffffffffffffffffffffffffffffffffff1660018686868660405160008152602001604052604051612bd19493929190613d9b565b6020604051602081039080840390855afa158015612bf3573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152509050612c8f878288604051602001612c71929190613be8565b60405160208183030381529060405280519060200120878787612b95565b91505095945050505050565b612ca6848484612939565b612cb284848484612d8e565b612cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce890613e22565b60405180910390fd5b50505050565b6060600d8054612d0690614511565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3290614511565b8015612d7f5780601f10612d5457610100808354040283529160200191612d7f565b820191906000526020600020905b815481529060010190602001808311612d6257829003601f168201915b5050505050905090565b505050565b6000612daf8473ffffffffffffffffffffffffffffffffffffffff16612f25565b15612f18578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dd86125cc565b8786866040518563ffffffff1660e01b8152600401612dfa9493929190613ce2565b602060405180830381600087803b158015612e1457600080fd5b505af1925050508015612e4557506040513d601f19601f82011682018060405250810190612e42919061348b565b60015b612ec8573d8060008114612e75576040519150601f19603f3d011682016040523d82523d6000602084013e612e7a565b606091505b50600081511415612ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb790613e22565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f1d565b600190505b949350505050565b600080823b905060008111915050919050565b828054612f4490614511565b90600052602060002090601f016020900481019282612f665760008555612fad565b82601f10612f7f57803560ff1916838001178555612fad565b82800160010185558215612fad579182015b82811115612fac578235825591602001919060010190612f91565b5b509050612fba9190613044565b5090565b828054612fca90614511565b90600052602060002090601f016020900481019282612fec5760008555613033565b82601f1061300557805160ff1916838001178555613033565b82800160010185558215613033579182015b82811115613032578251825591602001919060010190613017565b5b5090506130409190613044565b5090565b5b8082111561305d576000816000905550600101613045565b5090565b600061307461306f846142be565b614299565b90508281526020810184848401111561308c57600080fd5b6130978482856144cf565b509392505050565b60006130b26130ad846142ef565b614299565b9050828152602081018484840111156130ca57600080fd5b6130d58482856144cf565b509392505050565b6000813590506130ec81614cb8565b92915050565b60008135905061310181614ccf565b92915050565b60008135905061311681614ce6565b92915050565b60008135905061312b81614cfd565b92915050565b60008151905061314081614cfd565b92915050565b600082601f83011261315757600080fd5b8135613167848260208601613061565b91505092915050565b60008083601f84011261318257600080fd5b8235905067ffffffffffffffff81111561319b57600080fd5b6020830191508360018202830111156131b357600080fd5b9250929050565b600082601f8301126131cb57600080fd5b81356131db84826020860161309f565b91505092915050565b6000608082840312156131f657600080fd5b81905092915050565b60006060828403121561321157600080fd5b81905092915050565b60008135905061322981614d14565b92915050565b60008135905061323e81614d2b565b92915050565b60006020828403121561325657600080fd5b6000613264848285016130dd565b91505092915050565b6000806040838503121561328057600080fd5b600061328e858286016130dd565b925050602061329f858286016130dd565b9150509250929050565b6000806000606084860312156132be57600080fd5b60006132cc868287016130dd565b93505060206132dd868287016130dd565b92505060406132ee8682870161321a565b9150509250925092565b6000806000806080858703121561330e57600080fd5b600061331c878288016130dd565b945050602061332d878288016130dd565b935050604061333e8782880161321a565b925050606085013567ffffffffffffffff81111561335b57600080fd5b61336787828801613146565b91505092959194509250565b6000806040838503121561338657600080fd5b6000613394858286016130dd565b92505060206133a5858286016130f2565b9150509250929050565b600080600080600060a086880312156133c757600080fd5b60006133d5888289016130dd565b95505060206133e688828901613107565b94505060406133f78882890161322f565b935050606061340888828901613107565b925050608061341988828901613107565b9150509295509295909350565b6000806040838503121561343957600080fd5b6000613447858286016130dd565b92505060206134588582860161321a565b9150509250929050565b60006020828403121561347457600080fd5b60006134828482850161311c565b91505092915050565b60006020828403121561349d57600080fd5b60006134ab84828501613131565b91505092915050565b6000602082840312156134c657600080fd5b600082013567ffffffffffffffff8111156134e057600080fd5b6134ec84828501613146565b91505092915050565b6000806020838503121561350857600080fd5b600083013567ffffffffffffffff81111561352257600080fd5b61352e85828601613170565b92509250509250929050565b60006020828403121561354c57600080fd5b600082013567ffffffffffffffff81111561356657600080fd5b613572848285016131ba565b91505092915050565b60006020828403121561358d57600080fd5b600082013567ffffffffffffffff8111156135a757600080fd5b6135b3848285016131e4565b91505092915050565b6000602082840312156135ce57600080fd5b600082013567ffffffffffffffff8111156135e857600080fd5b6135f4848285016131ff565b91505092915050565b60006020828403121561360f57600080fd5b600061361d8482850161321a565b91505092915050565b61362f81614444565b82525050565b61364661364182614444565b6145bd565b82525050565b61365581614456565b82525050565b61366481614462565b82525050565b61367b61367682614462565b6145cf565b82525050565b600061368c82614335565b613696818561434b565b93506136a68185602086016144de565b6136af81614682565b840191505092915050565b60006136c582614335565b6136cf818561435c565b93506136df8185602086016144de565b80840191505092915050565b60006136f78385614378565b93506137048385846144cf565b82840190509392505050565b600061371b82614340565b6137258185614367565b93506137358185602086016144de565b61373e81614682565b840191505092915050565b600061375482614340565b61375e8185614378565b935061376e8185602086016144de565b80840191505092915050565b6000815461378781614511565b6137918186614378565b945060018216600081146137ac57600181146137bd576137f0565b60ff198316865281860193506137f0565b6137c685614320565b60005b838110156137e8578154818901526001820191506020810190506137c9565b838801955050505b50505092915050565b6000613806601683614367565b9150613811826146a0565b602082019050919050565b6000613829603283614367565b9150613834826146c9565b604082019050919050565b600061384c602683614367565b915061385782614718565b604082019050919050565b600061386f602283614367565b915061387a82614767565b604082019050919050565b6000613892601c83614367565b915061389d826147b6565b602082019050919050565b60006138b5601b83614367565b91506138c0826147df565b602082019050919050565b60006138d8602083614367565b91506138e382614808565b602082019050919050565b60006138fb602483614367565b915061390682614831565b604082019050919050565b600061391e601983614367565b915061392982614880565b602082019050919050565b6000613941601983614367565b915061394c826148a9565b602082019050919050565b6000613964602c83614367565b915061396f826148d2565b604082019050919050565b6000613987601883614367565b915061399282614921565b602082019050919050565b60006139aa603883614367565b91506139b58261494a565b604082019050919050565b60006139cd602a83614367565b91506139d882614999565b604082019050919050565b60006139f0602983614367565b91506139fb826149e8565b604082019050919050565b6000613a13602083614367565b9150613a1e82614a37565b602082019050919050565b6000613a36602c83614367565b9150613a4182614a60565b604082019050919050565b6000613a59602083614367565b9150613a6482614aaf565b602082019050919050565b6000613a7c602983614367565b9150613a8782614ad8565b604082019050919050565b6000613a9f601783614367565b9150613aaa82614b27565b602082019050919050565b6000613ac2602f83614367565b9150613acd82614b50565b604082019050919050565b6000613ae5602183614367565b9150613af082614b9f565b604082019050919050565b6000613b08600083614378565b9150613b1382614bee565b600082019050919050565b6000613b2b603183614367565b9150613b3682614bf1565b604082019050919050565b6000613b4e601883614367565b9150613b5982614c40565b602082019050919050565b6000613b71603383614367565b9150613b7c82614c69565b604082019050919050565b613b90816144b8565b82525050565b613ba7613ba2826144b8565b6145eb565b82525050565b613bb6816144c2565b82525050565b6000613bc88285613635565b601482019150613bd88284613b96565b6020820191508190509392505050565b6000613bf482856136ba565b9150613c00828461366a565b6020820191508190509392505050565b6000613c1c82866136ba565b9150613c298284866136eb565b9150819050949350505050565b6000613c4282856136ba565b9150613c4e8284613b96565b6020820191508190509392505050565b6000613c6b8284866136eb565b91508190509392505050565b6000613c838285613749565b9150613c8f828461377a565b91508190509392505050565b6000613ca7828461377a565b915081905092915050565b6000613cbd82613afb565b9150819050919050565b6000602082019050613cdc6000830184613626565b92915050565b6000608082019050613cf76000830187613626565b613d046020830186613626565b613d116040830185613b87565b8181036060830152613d238184613681565b905095945050505050565b6000602082019050613d43600083018461364c565b92915050565b6000602082019050613d5e600083018461365b565b92915050565b6000606082019050613d79600083018661365b565b613d86602083018561365b565b613d936040830184613bad565b949350505050565b6000608082019050613db0600083018761365b565b613dbd6020830186613bad565b613dca604083018561365b565b613dd7606083018461365b565b95945050505050565b60006020820190508181036000830152613dfa8184613710565b905092915050565b60006020820190508181036000830152613e1b816137f9565b9050919050565b60006020820190508181036000830152613e3b8161381c565b9050919050565b60006020820190508181036000830152613e5b8161383f565b9050919050565b60006020820190508181036000830152613e7b81613862565b9050919050565b60006020820190508181036000830152613e9b81613885565b9050919050565b60006020820190508181036000830152613ebb816138a8565b9050919050565b60006020820190508181036000830152613edb816138cb565b9050919050565b60006020820190508181036000830152613efb816138ee565b9050919050565b60006020820190508181036000830152613f1b81613911565b9050919050565b60006020820190508181036000830152613f3b81613934565b9050919050565b60006020820190508181036000830152613f5b81613957565b9050919050565b60006020820190508181036000830152613f7b8161397a565b9050919050565b60006020820190508181036000830152613f9b8161399d565b9050919050565b60006020820190508181036000830152613fbb816139c0565b9050919050565b60006020820190508181036000830152613fdb816139e3565b9050919050565b60006020820190508181036000830152613ffb81613a06565b9050919050565b6000602082019050818103600083015261401b81613a29565b9050919050565b6000602082019050818103600083015261403b81613a4c565b9050919050565b6000602082019050818103600083015261405b81613a6f565b9050919050565b6000602082019050818103600083015261407b81613a92565b9050919050565b6000602082019050818103600083015261409b81613ab5565b9050919050565b600060208201905081810360008301526140bb81613ad8565b9050919050565b600060208201905081810360008301526140db81613b1e565b9050919050565b600060208201905081810360008301526140fb81613b41565b9050919050565b6000602082019050818103600083015261411b81613b64565b9050919050565b60006020820190506141376000830184613b87565b92915050565b6000808335600160200384360303811261415657600080fd5b80840192508235915067ffffffffffffffff82111561417457600080fd5b60208301925060208202360383131561418c57600080fd5b509250929050565b600080833560016020038436030381126141ad57600080fd5b80840192508235915067ffffffffffffffff8211156141cb57600080fd5b6020830192506020820236038313156141e357600080fd5b509250929050565b6000808335600160200384360303811261420457600080fd5b80840192508235915067ffffffffffffffff82111561422257600080fd5b60208301925060018202360383131561423a57600080fd5b509250929050565b6000808335600160200384360303811261425b57600080fd5b80840192508235915067ffffffffffffffff82111561427957600080fd5b60208301925060018202360383131561429157600080fd5b509250929050565b60006142a36142b4565b90506142af8282614543565b919050565b6000604051905090565b600067ffffffffffffffff8211156142d9576142d8614653565b5b6142e282614682565b9050602081019050919050565b600067ffffffffffffffff82111561430a57614309614653565b5b61431382614682565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061438e826144b8565b9150614399836144b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ce576143cd6145f5565b5b828201905092915050565b60006143e4826144c2565b91506143ef836144c2565b92508260ff03821115614405576144046145f5565b5b828201905092915050565b600061441b826144b8565b9150614426836144b8565b925082821015614439576144386145f5565b5b828203905092915050565b600061444f82614498565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144fc5780820151818401526020810190506144e1565b8381111561450b576000848401525b50505050565b6000600282049050600182168061452957607f821691505b6020821081141561453d5761453c614624565b5b50919050565b61454c82614682565b810181811067ffffffffffffffff8211171561456b5761456a614653565b5b80604052505050565b600061457f826144b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145b2576145b16145f5565b5b600182019050919050565b60006145c8826145d9565b9050919050565b6000819050919050565b60006145e482614693565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e696420646f6573206e6f7420657869737400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6f6469667920636865636b2068617320616c7265616479206265656e20757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f746f6b656e496473206d69736d61746368207769746820757269730000000000600082015250565b7f4d696e7420636865636b2068617320616c7265616479206265656e2075736564600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6f6469667920636865636b206973206e6f742076616c696400000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206d696e7465720000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e7420636865636b206973206e6f742076616c6964000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2055524900000000000000000000000000602082015250565b614cc181614444565b8114614ccc57600080fd5b50565b614cd881614456565b8114614ce357600080fd5b50565b614cef81614462565b8114614cfa57600080fd5b50565b614d068161446c565b8114614d1157600080fd5b50565b614d1d816144b8565b8114614d2857600080fd5b50565b614d34816144c2565b8114614d3f57600080fd5b5056fea264697066735822122084ddb37cee55ec539996748f82c5d046fa32c1af20552a4d325569e42e667f7964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4c4f4e444f4e20456d62657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006454d424552530000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c80637e518ec81161011a578063a7bb5803116100ad578063e8a3d4851161007c578063e8a3d48514610623578063e985e9c514610641578063f2fde38b14610671578063f96e5dfe1461068d578063fca3b5aa146106bd57610206565b8063a7bb580314610589578063b88d4fde146105bb578063bb6fa942146105d7578063c87b56dd146105f357610206565b8063938e3d7b116100e9578063938e3d7b1461050357806395d89b411461051f5780639b6fb5551461053d578063a22cb4651461056d57610206565b80637e518ec81461047d57806385c0eb26146104995780638677ebe8146104b55780638da5cb5b146104e557610206565b80631f1260061161019d57806342842e0e1161016c57806342842e0e146103d95780635b2bd79e146103f55780636352211e1461041357806370a0823114610443578063715018a61461047357610206565b80631f1260061461034157806323b872dd1461035d5780632b25a95314610379578063318e9e28146103a957610206565b8063081812fc116101d9578063081812fc14610295578063095ea7b3146102c5578063119d209a146102e157806318d877171461031157610206565b806301ffc9a71461020b5780630315e9341461023b57806306fdde03146102595780630754617214610277575b600080fd5b61022560048036038101906102209190613462565b6106d9565b6040516102329190613d2e565b60405180910390f35b6102436107bb565b6040516102509190613cc7565b60405180910390f35b6102616107e1565b60405161026e9190613de0565b60405180910390f35b61027f610873565b60405161028c9190613cc7565b60405180910390f35b6102af60048036038101906102aa91906135fd565b610899565b6040516102bc9190613cc7565b60405180910390f35b6102df60048036038101906102da9190613426565b61091e565b005b6102fb60048036038101906102f691906135fd565b610a36565b6040516103089190613de0565b60405180910390f35b61032b600480360381019061032691906135fd565b610ad6565b6040516103389190614122565b60405180910390f35b61035b6004803603810190610356919061357b565b610aee565b005b610377600480360381019061037291906132a9565b610e87565b005b610393600480360381019061038e91906135bc565b610ee7565b6040516103a09190613d2e565b60405180910390f35b6103c360048036038101906103be919061357b565b610f95565b6040516103d09190613d49565b60405180910390f35b6103f360048036038101906103ee91906132a9565b61108d565b005b6103fd6110ad565b60405161040a9190613de0565b60405180910390f35b61042d600480360381019061042891906135fd565b61113b565b60405161043a9190613cc7565b60405180910390f35b61045d60048036038101906104589190613244565b6111ed565b60405161046a9190614122565b60405180910390f35b61047b6112a5565b005b6104976004803603810190610492919061353a565b6113f8565b005b6104b360048036038101906104ae9190613244565b6114a7565b005b6104cf60048036038101906104ca91906133af565b611580565b6040516104dc9190613d2e565b60405180910390f35b6104ed6115ae565b6040516104fa9190613cc7565b60405180910390f35b61051d600480360381019061051891906134f5565b6115d7565b005b610527611682565b6040516105349190613de0565b60405180910390f35b610557600480360381019061055291906135bc565b611714565b6040516105649190613d49565b60405180910390f35b61058760048036038101906105829190613373565b611891565b005b6105a3600480360381019061059e91906134b4565b611a12565b6040516105b293929190613d64565b60405180910390f35b6105d560048036038101906105d091906132f8565b611a96565b005b6105f160048036038101906105ec91906135bc565b611af8565b005b61060d600480360381019061060891906135fd565b611f89565b60405161061a9190613de0565b60405180910390f35b61062b61208b565b6040516106389190613de0565b60405180910390f35b61065b6004803603810190610656919061326d565b612119565b6040516106689190613d2e565b60405180910390f35b61068b60048036038101906106869190613244565b6121ad565b005b6106a760048036038101906106a2919061357b565b61236f565b6040516106b49190613d2e565b60405180910390f35b6106d760048036038101906106d29190613244565b61241d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b457506107b3826124f6565b5b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546107f090614511565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90614511565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108a482612560565b6108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90614002565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109298261113b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610991906140a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b96125cc565b73ffffffffffffffffffffffffffffffffffffffff1614806109e857506109e7816109e26125cc565b612119565b5b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613f82565b60405180910390fd5b610a3183836125d4565b505050565b600a6020528060005260406000206000915090508054610a5590614511565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190614511565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b505050505081565b600b6020528060005260406000206000915090505481565b610af66125cc565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613f62565b60405180910390fd5b6000610b9082610f95565b90506000806000610bf2858060600190610baa91906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250610c27600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90614062565b60405180910390fd5b60005b858060400190610c79919061413d565b9050811015610e7f576000868060400190610c94919061413d565b83818110610ccb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610cdd9190614242565b604051602001610cee929190613c5e565b6040516020818303038152906040528051906020012090506000600c60008381526020019081526020016000205414610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613ec2565b60405180910390fd5b6000600b60008960200135815260200190815260200160002060008154610d8290614574565b9190508190558860200135179050610dac886000016020810190610da69190613244565b8261268d565b878060400190610dbc919061413d565b84818110610df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610e059190614242565b600a60008481526020019081526020016000209190610e25929190612f38565b5080600c60008481526020019081526020016000208190555086817f0f84d23cfca28469f65591a722135f0e3fcc7a7832f88fa90fe84ea5089a86be60405160405180910390a3505080610e7890614574565b9050610c69565b505050505050565b610e98610e926125cc565b8261285b565b610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906140c2565b60405180910390fd5b610ee2838383612939565b505050565b600080610ef383611714565b90506000806000610f55868060400190610f0d91906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250610f8a600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b945050505050919050565b600080826000016020810190610fab9190613244565b8360200135604051602001610fc1929190613bbc565b604051602081830303815290604052905060005b838060400190610fe5919061413d565b905081101561107c5781848060400190610fff919061413d565b83818110611036577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906110489190614242565b60405160200161105a93929190613c10565b60405160208183030381529060405291508061107590614574565b9050610fd5565b508080519060200120915050919050565b6110a883838360405180602001604052806000815250611a96565b505050565b600d80546110ba90614511565b80601f01602080910402602001604051908101604052809291908181526020018280546110e690614511565b80156111335780601f1061110857610100808354040283529160200191611133565b820191906000526020600020905b81548152906001019060200180831161111657829003601f168201915b505050505081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90613fc2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613fa2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ad6125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614022565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114006125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490614022565b60405180910390fd5b80600d90805190602001906114a3929190612fbe565b5050565b6114af6125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614022565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061158f8686868686612b95565b806115a357506115a28686868686612c1f565b5b905095945050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115df6125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390614022565b60405180910390fd5b81816009919061167d929190612f38565b505050565b60606002805461169190614511565b80601f01602080910402602001604051908101604052809291908181526020018280546116bd90614511565b801561170a5780601f106116df5761010080835404028352916020019161170a565b820191906000526020600020905b8154815290600101906020018083116116ed57829003601f168201915b5050505050905090565b60008060405160200161172690613cb2565b604051602081830303815290604052905060005b83806000019061174a9190614194565b90508110156117d557818480600001906117649190614194565b8381811061179b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040516020016117b3929190613c36565b6040516020818303038152906040529150806117ce90614574565b905061173a565b5060005b8380602001906117e9919061413d565b90508110156118805781848060200190611803919061413d565b8381811061183a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200281019061184c9190614242565b60405160200161185e93929190613c10565b60405160208183030381529060405291508061187990614574565b90506117d9565b508080519060200120915050919050565b6118996125cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613f02565b60405180910390fd5b80600660006119146125cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c16125cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a069190613d2e565b60405180910390a35050565b60008060006041845114611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a52906140e2565b60405180910390fd5b6020840151925060408401519150606084015160001a9050601b8160ff161015611a8f57601b81611a8c91906143d9565b90505b9193909250565b611aa7611aa16125cc565b8361285b565b611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906140c2565b60405180910390fd5b611af284848484612c9b565b50505050565b808060200190611b08919061413d565b9050818060000190611b1a9190614194565b905014611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613ea2565b60405180910390fd5b6000611b6782611714565b90506000806000611bc9858060400190611b8191906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250611bfe600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613f22565b60405180910390fd5b60005b858060000190611c509190614194565b9050811015611f81576000868060200190611c6b919061413d565b83818110611ca2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190611cb49190614242565b604051602001611cc5929190613c5e565b6040516020818303038152906040528051906020012090506000600c60008381526020019081526020016000205414611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613e62565b60405180910390fd5b611d89878060000190611d469190614194565b84818110611d7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612560565b611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613e02565b60405180910390fd5b868060200190611dd8919061413d565b83818110611e0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190611e219190614242565b600a60008a8060000190611e359190614194565b87818110611e6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000209190611e8e929190612f38565b50868060000190611e9f9190614194565b83818110611ed6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600c60008381526020019081526020016000208190555085878060000190611f059190614194565b84818110611f3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201357f0f84d23cfca28469f65591a722135f0e3fcc7a7832f88fa90fe84ea5089a86be60405160405180910390a35080611f7a90614574565b9050611c40565b505050505050565b6060611f9482612560565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90614082565b60405180910390fd5b6000600a6000848152602001908152602001600020604051602001611ff89190613c9b565b604051602081830303815290604052511415612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090614102565b60405180910390fd5b612051612cf7565b600a6000848152602001908152602001600020604051602001612075929190613c77565b6040516020818303038152906040529050919050565b6009805461209890614511565b80601f01602080910402602001604051908101604052809291908181526020018280546120c490614511565b80156121115780601f106120e657610100808354040283529160200191612111565b820191906000526020600020905b8154815290600101906020018083116120f457829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121b56125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614022565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a990613e42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061237b83610f95565b905060008060006123dd86806060019061239591906141eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a12565b925092509250612412600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685838686611580565b945050505050919050565b6124256125cc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614022565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126478361113b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490613fe2565b60405180910390fd5b61270681612560565b15612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90613e82565b60405180910390fd5b61275260008383612d89565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a29190614383565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061286682612560565b6128a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289c90613f42565b60405180910390fd5b60006128b08361113b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291f57508373ffffffffffffffffffffffffffffffffffffffff1661290784610899565b73ffffffffffffffffffffffffffffffffffffffff16145b80612930575061292f8185612119565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129598261113b565b73ffffffffffffffffffffffffffffffffffffffff16146129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614042565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690613ee2565b60405180910390fd5b612a2a838383612d89565b612a356000826125d4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a859190614410565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612adc9190614383565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008573ffffffffffffffffffffffffffffffffffffffff1660018686868660405160008152602001604052604051612bd19493929190613d9b565b6020604051602081039080840390855afa158015612bf3573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152509050612c8f878288604051602001612c71929190613be8565b60405160208183030381529060405280519060200120878787612b95565b91505095945050505050565b612ca6848484612939565b612cb284848484612d8e565b612cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce890613e22565b60405180910390fd5b50505050565b6060600d8054612d0690614511565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3290614511565b8015612d7f5780601f10612d5457610100808354040283529160200191612d7f565b820191906000526020600020905b815481529060010190602001808311612d6257829003601f168201915b5050505050905090565b505050565b6000612daf8473ffffffffffffffffffffffffffffffffffffffff16612f25565b15612f18578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dd86125cc565b8786866040518563ffffffff1660e01b8152600401612dfa9493929190613ce2565b602060405180830381600087803b158015612e1457600080fd5b505af1925050508015612e4557506040513d601f19601f82011682018060405250810190612e42919061348b565b60015b612ec8573d8060008114612e75576040519150601f19603f3d011682016040523d82523d6000602084013e612e7a565b606091505b50600081511415612ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb790613e22565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f1d565b600190505b949350505050565b600080823b905060008111915050919050565b828054612f4490614511565b90600052602060002090601f016020900481019282612f665760008555612fad565b82601f10612f7f57803560ff1916838001178555612fad565b82800160010185558215612fad579182015b82811115612fac578235825591602001919060010190612f91565b5b509050612fba9190613044565b5090565b828054612fca90614511565b90600052602060002090601f016020900481019282612fec5760008555613033565b82601f1061300557805160ff1916838001178555613033565b82800160010185558215613033579182015b82811115613032578251825591602001919060010190613017565b5b5090506130409190613044565b5090565b5b8082111561305d576000816000905550600101613045565b5090565b600061307461306f846142be565b614299565b90508281526020810184848401111561308c57600080fd5b6130978482856144cf565b509392505050565b60006130b26130ad846142ef565b614299565b9050828152602081018484840111156130ca57600080fd5b6130d58482856144cf565b509392505050565b6000813590506130ec81614cb8565b92915050565b60008135905061310181614ccf565b92915050565b60008135905061311681614ce6565b92915050565b60008135905061312b81614cfd565b92915050565b60008151905061314081614cfd565b92915050565b600082601f83011261315757600080fd5b8135613167848260208601613061565b91505092915050565b60008083601f84011261318257600080fd5b8235905067ffffffffffffffff81111561319b57600080fd5b6020830191508360018202830111156131b357600080fd5b9250929050565b600082601f8301126131cb57600080fd5b81356131db84826020860161309f565b91505092915050565b6000608082840312156131f657600080fd5b81905092915050565b60006060828403121561321157600080fd5b81905092915050565b60008135905061322981614d14565b92915050565b60008135905061323e81614d2b565b92915050565b60006020828403121561325657600080fd5b6000613264848285016130dd565b91505092915050565b6000806040838503121561328057600080fd5b600061328e858286016130dd565b925050602061329f858286016130dd565b9150509250929050565b6000806000606084860312156132be57600080fd5b60006132cc868287016130dd565b93505060206132dd868287016130dd565b92505060406132ee8682870161321a565b9150509250925092565b6000806000806080858703121561330e57600080fd5b600061331c878288016130dd565b945050602061332d878288016130dd565b935050604061333e8782880161321a565b925050606085013567ffffffffffffffff81111561335b57600080fd5b61336787828801613146565b91505092959194509250565b6000806040838503121561338657600080fd5b6000613394858286016130dd565b92505060206133a5858286016130f2565b9150509250929050565b600080600080600060a086880312156133c757600080fd5b60006133d5888289016130dd565b95505060206133e688828901613107565b94505060406133f78882890161322f565b935050606061340888828901613107565b925050608061341988828901613107565b9150509295509295909350565b6000806040838503121561343957600080fd5b6000613447858286016130dd565b92505060206134588582860161321a565b9150509250929050565b60006020828403121561347457600080fd5b60006134828482850161311c565b91505092915050565b60006020828403121561349d57600080fd5b60006134ab84828501613131565b91505092915050565b6000602082840312156134c657600080fd5b600082013567ffffffffffffffff8111156134e057600080fd5b6134ec84828501613146565b91505092915050565b6000806020838503121561350857600080fd5b600083013567ffffffffffffffff81111561352257600080fd5b61352e85828601613170565b92509250509250929050565b60006020828403121561354c57600080fd5b600082013567ffffffffffffffff81111561356657600080fd5b613572848285016131ba565b91505092915050565b60006020828403121561358d57600080fd5b600082013567ffffffffffffffff8111156135a757600080fd5b6135b3848285016131e4565b91505092915050565b6000602082840312156135ce57600080fd5b600082013567ffffffffffffffff8111156135e857600080fd5b6135f4848285016131ff565b91505092915050565b60006020828403121561360f57600080fd5b600061361d8482850161321a565b91505092915050565b61362f81614444565b82525050565b61364661364182614444565b6145bd565b82525050565b61365581614456565b82525050565b61366481614462565b82525050565b61367b61367682614462565b6145cf565b82525050565b600061368c82614335565b613696818561434b565b93506136a68185602086016144de565b6136af81614682565b840191505092915050565b60006136c582614335565b6136cf818561435c565b93506136df8185602086016144de565b80840191505092915050565b60006136f78385614378565b93506137048385846144cf565b82840190509392505050565b600061371b82614340565b6137258185614367565b93506137358185602086016144de565b61373e81614682565b840191505092915050565b600061375482614340565b61375e8185614378565b935061376e8185602086016144de565b80840191505092915050565b6000815461378781614511565b6137918186614378565b945060018216600081146137ac57600181146137bd576137f0565b60ff198316865281860193506137f0565b6137c685614320565b60005b838110156137e8578154818901526001820191506020810190506137c9565b838801955050505b50505092915050565b6000613806601683614367565b9150613811826146a0565b602082019050919050565b6000613829603283614367565b9150613834826146c9565b604082019050919050565b600061384c602683614367565b915061385782614718565b604082019050919050565b600061386f602283614367565b915061387a82614767565b604082019050919050565b6000613892601c83614367565b915061389d826147b6565b602082019050919050565b60006138b5601b83614367565b91506138c0826147df565b602082019050919050565b60006138d8602083614367565b91506138e382614808565b602082019050919050565b60006138fb602483614367565b915061390682614831565b604082019050919050565b600061391e601983614367565b915061392982614880565b602082019050919050565b6000613941601983614367565b915061394c826148a9565b602082019050919050565b6000613964602c83614367565b915061396f826148d2565b604082019050919050565b6000613987601883614367565b915061399282614921565b602082019050919050565b60006139aa603883614367565b91506139b58261494a565b604082019050919050565b60006139cd602a83614367565b91506139d882614999565b604082019050919050565b60006139f0602983614367565b91506139fb826149e8565b604082019050919050565b6000613a13602083614367565b9150613a1e82614a37565b602082019050919050565b6000613a36602c83614367565b9150613a4182614a60565b604082019050919050565b6000613a59602083614367565b9150613a6482614aaf565b602082019050919050565b6000613a7c602983614367565b9150613a8782614ad8565b604082019050919050565b6000613a9f601783614367565b9150613aaa82614b27565b602082019050919050565b6000613ac2602f83614367565b9150613acd82614b50565b604082019050919050565b6000613ae5602183614367565b9150613af082614b9f565b604082019050919050565b6000613b08600083614378565b9150613b1382614bee565b600082019050919050565b6000613b2b603183614367565b9150613b3682614bf1565b604082019050919050565b6000613b4e601883614367565b9150613b5982614c40565b602082019050919050565b6000613b71603383614367565b9150613b7c82614c69565b604082019050919050565b613b90816144b8565b82525050565b613ba7613ba2826144b8565b6145eb565b82525050565b613bb6816144c2565b82525050565b6000613bc88285613635565b601482019150613bd88284613b96565b6020820191508190509392505050565b6000613bf482856136ba565b9150613c00828461366a565b6020820191508190509392505050565b6000613c1c82866136ba565b9150613c298284866136eb565b9150819050949350505050565b6000613c4282856136ba565b9150613c4e8284613b96565b6020820191508190509392505050565b6000613c6b8284866136eb565b91508190509392505050565b6000613c838285613749565b9150613c8f828461377a565b91508190509392505050565b6000613ca7828461377a565b915081905092915050565b6000613cbd82613afb565b9150819050919050565b6000602082019050613cdc6000830184613626565b92915050565b6000608082019050613cf76000830187613626565b613d046020830186613626565b613d116040830185613b87565b8181036060830152613d238184613681565b905095945050505050565b6000602082019050613d43600083018461364c565b92915050565b6000602082019050613d5e600083018461365b565b92915050565b6000606082019050613d79600083018661365b565b613d86602083018561365b565b613d936040830184613bad565b949350505050565b6000608082019050613db0600083018761365b565b613dbd6020830186613bad565b613dca604083018561365b565b613dd7606083018461365b565b95945050505050565b60006020820190508181036000830152613dfa8184613710565b905092915050565b60006020820190508181036000830152613e1b816137f9565b9050919050565b60006020820190508181036000830152613e3b8161381c565b9050919050565b60006020820190508181036000830152613e5b8161383f565b9050919050565b60006020820190508181036000830152613e7b81613862565b9050919050565b60006020820190508181036000830152613e9b81613885565b9050919050565b60006020820190508181036000830152613ebb816138a8565b9050919050565b60006020820190508181036000830152613edb816138cb565b9050919050565b60006020820190508181036000830152613efb816138ee565b9050919050565b60006020820190508181036000830152613f1b81613911565b9050919050565b60006020820190508181036000830152613f3b81613934565b9050919050565b60006020820190508181036000830152613f5b81613957565b9050919050565b60006020820190508181036000830152613f7b8161397a565b9050919050565b60006020820190508181036000830152613f9b8161399d565b9050919050565b60006020820190508181036000830152613fbb816139c0565b9050919050565b60006020820190508181036000830152613fdb816139e3565b9050919050565b60006020820190508181036000830152613ffb81613a06565b9050919050565b6000602082019050818103600083015261401b81613a29565b9050919050565b6000602082019050818103600083015261403b81613a4c565b9050919050565b6000602082019050818103600083015261405b81613a6f565b9050919050565b6000602082019050818103600083015261407b81613a92565b9050919050565b6000602082019050818103600083015261409b81613ab5565b9050919050565b600060208201905081810360008301526140bb81613ad8565b9050919050565b600060208201905081810360008301526140db81613b1e565b9050919050565b600060208201905081810360008301526140fb81613b41565b9050919050565b6000602082019050818103600083015261411b81613b64565b9050919050565b60006020820190506141376000830184613b87565b92915050565b6000808335600160200384360303811261415657600080fd5b80840192508235915067ffffffffffffffff82111561417457600080fd5b60208301925060208202360383131561418c57600080fd5b509250929050565b600080833560016020038436030381126141ad57600080fd5b80840192508235915067ffffffffffffffff8211156141cb57600080fd5b6020830192506020820236038313156141e357600080fd5b509250929050565b6000808335600160200384360303811261420457600080fd5b80840192508235915067ffffffffffffffff82111561422257600080fd5b60208301925060018202360383131561423a57600080fd5b509250929050565b6000808335600160200384360303811261425b57600080fd5b80840192508235915067ffffffffffffffff82111561427957600080fd5b60208301925060018202360383131561429157600080fd5b509250929050565b60006142a36142b4565b90506142af8282614543565b919050565b6000604051905090565b600067ffffffffffffffff8211156142d9576142d8614653565b5b6142e282614682565b9050602081019050919050565b600067ffffffffffffffff82111561430a57614309614653565b5b61431382614682565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061438e826144b8565b9150614399836144b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ce576143cd6145f5565b5b828201905092915050565b60006143e4826144c2565b91506143ef836144c2565b92508260ff03821115614405576144046145f5565b5b828201905092915050565b600061441b826144b8565b9150614426836144b8565b925082821015614439576144386145f5565b5b828203905092915050565b600061444f82614498565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144fc5780820151818401526020810190506144e1565b8381111561450b576000848401525b50505050565b6000600282049050600182168061452957607f821691505b6020821081141561453d5761453c614624565b5b50919050565b61454c82614682565b810181811067ffffffffffffffff8211171561456b5761456a614653565b5b80604052505050565b600061457f826144b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145b2576145b16145f5565b5b600182019050919050565b60006145c8826145d9565b9050919050565b6000819050919050565b60006145e482614693565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e696420646f6573206e6f7420657869737400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6f6469667920636865636b2068617320616c7265616479206265656e20757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f746f6b656e496473206d69736d61746368207769746820757269730000000000600082015250565b7f4d696e7420636865636b2068617320616c7265616479206265656e2075736564600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6f6469667920636865636b206973206e6f742076616c696400000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206d696e7465720000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e7420636865636b206973206e6f742076616c6964000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2055524900000000000000000000000000602082015250565b614cc181614444565b8114614ccc57600080fd5b50565b614cd881614456565b8114614ce357600080fd5b50565b614cef81614462565b8114614cfa57600080fd5b50565b614d068161446c565b8114614d1157600080fd5b50565b614d1d816144b8565b8114614d2857600080fd5b50565b614d34816144c2565b8114614d3f57600080fd5b5056fea264697066735822122084ddb37cee55ec539996748f82c5d046fa32c1af20552a4d325569e42e667f7964736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4c4f4e444f4e20456d62657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006454d424552530000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): LONDON Embers
Arg [1] : symbol_ (string): EMBERS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 4c4f4e444f4e20456d6265727300000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 454d424552530000000000000000000000000000000000000000000000000000


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.