POL Price: $0.30299 (-3.94%)
Gas: 30 GWei
 

Overview

Max Total Supply

184 FRENS

Holders

100

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
FrensOnChain

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

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

pragma solidity >=0.8.0 <0.9.0;

import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Base64.sol";
import "./FrenStates1.sol";
import "./FrenStates2.sol";



contract FrensOnChain is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using Strings for int256;

   struct Fren { 
      string name;
      string givenName;
      string description;
      int256 happiness;
      int256 energy;
      int256 cleanliness;
      string frenColor1;
      string frenColor2;
      string frenColor3;
      string frenColor4;
      uint256 bornTimestamp;
   }
   
   mapping (uint256 => Fren) public frens;
   uint256 public generationCost = 2 ether;
   uint256 public feedCost = 1 ether;
   uint256 public cleanCost = 1 ether;
   uint256 public playCost = 1 ether;
   uint256 public reviveCost = 100 ether;
   
   constructor() ERC721("FrensOnChain", "FRENS") {}

  function mint() public payable  {
    uint256 supply = totalSupply();
    
    Fren memory newFren = Fren(
        string(abi.encodePacked('Frens On Chain #', uint256(supply + 1).toString())), 
        "",
        "Frens On Chain are 100% on-chain generated, dynamic NFTs and your new on-chain frens. Take care of your fren by feeding it, playing with it and cleaning it, your fren will appreciate that and its appearance will change accordingly, remember, Frens On Chain last forever!",
        101,
        101,
        101,        
        randomNum(361, block.prevrandao, supply).toString(),
        randomNum(361, block.timestamp, supply+30).toString(),
        randomNum(101, block.prevrandao, block.timestamp).toString(),
        randomNum(361, block.prevrandao, supply+10).toString(),
        block.timestamp
        );
    
    if (msg.sender != owner()) {
      require(msg.value >= generationCost);
    }
    
    frens[supply + 1] = newFren;
    _safeMint(msg.sender, supply + 1);
    generationCost = (generationCost * 101) / 100;

}

  function randomNum(uint256 _mod, uint256 _seed, uint _salt) public view returns(uint256) {
      uint256 num = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, _seed, _salt)));
      num = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, _seed, _salt, num))) % _mod;
      return num;
  }

  function feed(uint256 _tokenId) payable public {
    require(_exists(_tokenId),"ERC721Metadata: Query for nonexistent token");
    require(isAlive(_tokenId),"That Fren is dead!");
    require(ownerOf(_tokenId) == msg.sender,"You are not the owner's of the Fren");
    require(msg.value >= feedCost);
    Fren storage fren = frens[_tokenId];
    fren.energy = fren.energy + 3;
  }

  function clean(uint256 _tokenId) payable public {
    require(_exists(_tokenId),"ERC721Metadata: Query for nonexistent token");
    require(isAlive(_tokenId),"That Fren is dead!");
    require(ownerOf(_tokenId) == msg.sender,"You are not the owner's of the Fren");
    require(msg.value >= cleanCost);
    Fren storage fren = frens[_tokenId];
    fren.cleanliness = fren.cleanliness + 3;
  }

  function play(uint256 _tokenId) payable public {
    require(_exists(_tokenId),"ERC721Metadata: Query for nonexistent token");
    require(isAlive(_tokenId),"That Fren is dead!");
    require(ownerOf(_tokenId) == msg.sender,"You are not the owner's of the Fren");
    require(msg.value >= playCost);
    Fren storage fren = frens[_tokenId];
    fren.happiness = fren.happiness + 3;
  }

  function calculateDaysAlive(uint256 _tokenId) public view returns(int256) {
    require(_exists(_tokenId),"ERC721Metadata: Query for nonexistent token");
    Fren memory fren = frens[_tokenId];
    int256 daysAlive = int256((block.timestamp - fren.bornTimestamp) / 86400)+1;
    return daysAlive;
  }

  //every day, the fren loses 1 energy, 1 cleanliness, and 1 happiness
  //to check if the fren is alive, we check if any of the stats are 0
  function isAlive(uint256 _tokenId) public view returns(bool) {
    require(_exists(_tokenId),"ERC721Metadata: Query for nonexistent token");
    Fren memory fren = frens[_tokenId];
    int256 daysAlive = calculateDaysAlive(_tokenId);
    int256 energy = fren.energy - daysAlive;
    int256 cleanliness = fren.cleanliness - daysAlive;
    int256 happiness = fren.happiness - daysAlive;
    if(energy <= 0 || cleanliness <= 0 || happiness <= 0){
        return false;
    }else{
        return true;
    }
  }

  function revive(uint256 _tokenId) payable public {
    require(_exists(_tokenId),"ERC721Metadata: Query for nonexistent token");
    require(!isAlive(_tokenId),"That Fren is still alive!");
    require(ownerOf(_tokenId) == msg.sender,"You are not the owner's of the Fren");
    require(msg.value >= reviveCost);
    Fren storage fren = frens[_tokenId];
    fren.energy = 101;
    fren.cleanliness = 101;
    fren.happiness = 101;
    fren.bornTimestamp = block.timestamp;
  }
  
  function buildImage(uint256 _tokenId) public view returns(string memory) {
    Fren memory currentFren = frens[_tokenId];
    bytes memory imagePart2;
    int256 daysAlive = calculateDaysAlive(_tokenId); 
    string memory givenName = currentFren.givenName;
    int256 energy = currentFren.energy - daysAlive;
    int256 cleanliness = currentFren.cleanliness - daysAlive;
    int256 happiness = currentFren.happiness - daysAlive;
    if(energy >= 100000){
        energy = 99999;
    }
    if(cleanliness >= 100000){
        cleanliness = 99999;
    }
    if(happiness >= 100000){
        happiness = 99999;
    }
    bytes memory imagePart1 = bytes(
        abi.encodePacked(
            '<svg xmlns="http://www.w3.org/2000/svg" width="500" height="550" viewBox="0 0 20 22" preserveAspectRatio="xMidYMid slice"><style>.prefix__small{font:.7px Comic Sans MS}</style><defs><linearGradient id="prefix__background1"><stop stop-color="hsl(50, 70%, 50%)"/></linearGradient></defs><defs><linearGradient id="prefix__background2"><stop stop-color="hsl(',currentFren.frenColor1,', 30%, 50%)"/></linearGradient></defs><defs><linearGradient id="prefix__background3"><stop stop-color="hsl(',currentFren.frenColor2,', 30%, 50%)"/></linearGradient></defs><defs><linearGradient id="prefix__background4"><stop stop-color="hsl(360, 70%, ',currentFren.frenColor3,'%)"/></linearGradient></defs><defs><linearGradient id="prefix__background5"><stop stop-color="hsl(',currentFren.frenColor4,', 50%, 50%)"/></linearGradient></defs>'
        )
        );
    bytes memory imagePart3 = bytes(
        abi.encodePacked(
            '<text x="1" y="1.5" class="prefix__small">#',_tokenId.toString(),'</text><text x="1.1" y="3" class="prefix__small">',givenName,'</text><text x="1" y="21.3" class="prefix__small">Happiness: ',happiness.toString(),'</text><text x="8" y="21.3" class="prefix__small">Energy: ',energy.toString(),'</text><text x="14" y="21.3" class="prefix__small">Cleanliness: ',cleanliness.toString(),'</text></svg>'
        )
    );
    if(isAlive(_tokenId)){

        //if energy, cleanliness, and happiness are above than 70, fren is happy
        if(energy >= 70 && cleanliness >= 70 && happiness >= 70){
          imagePart2 = FrenStates1.Fren2StringHappy();
        }
        // else if those valuse are between 40 and 70, fren is neutral
        else if(energy >= 40 && cleanliness >= 40 && happiness >= 40){
          imagePart2 = FrenStates1.Fren2StringNeutral();
        }
        // else fren is sad
        else{
          imagePart2 = FrenStates2.Fren2StringSad();
        }
        string memory svg = Base64.encode(bytes(
          abi.encodePacked(
              imagePart1,
              imagePart2,
              imagePart3
          )
        ));
        return svg;
    }
    else{
        imagePart2 = FrenStates2.Fren2StringDead();
        imagePart3 = bytes(
          abi.encodePacked(
              '<text x="1" y="1.5" class="prefix__small">#',_tokenId.toString(),'</text><text x="1.1" y="3" class="prefix__small">',givenName,'</text><text x="1" y="21.3" class="prefix__small">Happiness: -----</text><text x="8" y="21.3" class="prefix__small">Energy: -----</text><text x="14" y="21.3" class="prefix__small">Cleanliness: -----</text></svg>'
          )
        );
        string memory svg = Base64.encode(bytes(
          abi.encodePacked(
              imagePart1,
              imagePart2,
              imagePart3
          )
        ));
        return svg;
    }
  }
  
  function buildMetadata(uint256 _tokenId) public view returns(string memory) {
      Fren memory currentImage = frens[_tokenId];
      return string(abi.encodePacked(
              'data:application/json;base64,', Base64.encode(bytes(abi.encodePacked(
                          '{"name":"', 
                          currentImage.name,
                          '", "description":"', 
                          currentImage.description,
                          '", "image": "', 
                          'data:image/svg+xml;base64,', 
                          buildImage(_tokenId),
                          '"}')))));
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
    return buildMetadata(_tokenId);
  }

  // given name can't be more than 10 characters
  function setFrenName(string memory _name, uint256 _tokenId) public {
    require(ownerOf(_tokenId) == msg.sender,"You are not the owner's of this fren");
    require(bytes(_name).length <= 10, "Name can't be more than 10 characters");
    Fren storage fren = frens[_tokenId];
    fren.givenName = _name;
  }

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
  function getPlayerByIndex(uint256 _tokenId) public view returns(Fren memory) {
    require(_exists(_tokenId),"ERC721Metadata: Query for nonexistent token");
    Fren memory player = frens[_tokenId];
    return player;
  }

}

File 2 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 4 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 5 of 19 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

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

File 6 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 7 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 8 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 13 of 19 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 14 of 19 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 15 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 16 of 19 : Base64.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';
        
        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
               dataPtr := add(dataPtr, 3)
               
               // read 3 bytes
               let input := mload(dataPtr)
               
               // write 4 characters
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
               resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }
        
        return result;
    }
}

File 17 of 19 : FrenStates1.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0 <0.9.0;

library FrenStates1 {
    function Fren2StringHappy() public pure returns (bytes memory) {
        return bytes(
          abi.encodePacked(
              '<path fill="url(#prefix__background1)" d="M0 0h30v30H0z"/><path fill="url(#prefix__background2)" d="M0 0h1v1H0zM1 0h1v1H1zM2 0h1v1H2zM3 0h1v1H3zM4 0h1v1H4zM5 0h1v1H5zM6 0h1v1H6zM7 0h1v1H7zM8 0h1v1H8zM9 0h1v1H9zM10 0h1v1h-1zM11 0h1v1h-1zM12 0h1v1h-1zM13 0h1v1h-1zM14 0h1v1h-1zM15 0h1v1h-1zM16 0h1v1h-1zM17 0h1v1h-1zM18 0h1v1h-1zM19 0h1v1h-1zM0 1h1v1H0zM1 1h1v1H1zM2 1h1v1H2zM3 1h1v1H3zM4 1h1v1H4zM5 1h1v1H5zM6 1h1v1H6zM7 1h1v1H7zM8 1h1v1H8zM9 1h1v1H9zM10 1h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 1h1v1h-1zM12 1h1v1h-1z"/><path fill="url(#prefix__background2)" d="M13 1h1v1h-1zM14 1h1v1h-1zM15 1h1v1h-1zM16 1h1v1h-1zM17 1h1v1h-1zM18 1h1v1h-1zM19 1h1v1h-1zM0 2h1v1H0zM1 2h1v1H1zM2 2h1v1H2zM3 2h1v1H3zM4 2h1v1H4zM5 2h1v1H5zM6 2h1v1H6zM7 2h1v1H7zM8 2h1v1H8zM9 2h1v1H9z"/><path fill="hsl(0, 0%, 0%)" d="M10 2h1v1h-1z"/><path fill="url(#prefix__background4)" d="M11 2h1v1h-1zM12 2h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 2h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 2h1v1h-1zM15 2h1v1h-1zM16 2h1v1h-1zM17 2h1v1h-1zM18 2h1v1h-1zM19 2h1v1h-1zM0 3h1v1H0zM1 3h1v1H1zM2 3h1v1H2zM3 3h1v1H3zM4 3h1v1H4zM5 3h1v1H5zM6 3h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 3h1v1H7zM8 3h1v1H8zM9 3h1v1H9zM10 3h1v1h-1zM11 3h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 3h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 3h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 3h1v1h-1zM15 3h1v1h-1zM16 3h1v1h-1zM17 3h1v1h-1zM18 3h1v1h-1zM19 3h1v1h-1zM0 4h1v1H0zM1 4h1v1H1zM2 4h1v1H2zM3 4h1v1H3zM4 4h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 4h1v1H5zM6 4h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 4h1v1H7zM8 4h1v1H8zM9 4h1v1H9zM10 4h1v1h-1zM11 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 4h1v1h-1zM13 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 4h1v1h-1zM16 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 4h1v1h-1zM18 4h1v1h-1zM19 4h1v1h-1zM0 5h1v1H0zM1 5h1v1H1zM2 5h1v1H2zM3 5h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 5h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 5h1v1H5zM6 5h1v1H6zM7 5h1v1H7zM8 5h1v1H8zM9 5h1v1H9zM10 5h1v1h-1zM11 5h1v1h-1zM12 5h1v1h-1zM13 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 5h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 5h1v1h-1zM16 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 5h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 5h1v1h-1zM19 5h1v1h-1zM0 6h1v1H0zM1 6h1v1H1zM2 6h1v1H2zM3 6h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 6h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 6h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 6h1v1H6zM7 6h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 6h1v1H8zM9 6h1v1H9zM10 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 6h1v1h-1zM12 6h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 6h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 6h1v1h-1zM16 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 6h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 6h1v1h-1zM19 6h1v1h-1zM0 7h1v1H0zM1 7h1v1H1zM2 7h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 7h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 7h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 7h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 7h1v1H6z"/><path fill="hsl(0, 0%, 60%)" d="M7 7h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 7h1v1H8zM9 7h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 7h1v1h-1z"/><path fill="hsl(0, 0%, 60%)" d="M12 7h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 7h1v1h-1zM14 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 7h1v1h-1zM16 7h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 7h1v1h-1zM18 7h1v1h-1zM19 7h1v1h-1zM0 8h1v1H0zM1 8h1v1H1zM2 8h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 8h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 8h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 8h1v1H5zM6 8h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 8h1v1H7zM8 8h1v1H8zM9 8h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 8h1v1h-1zM11 8h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 8h1v1h-1zM13 8h1v1h-1zM14 8h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 8h1v1h-1z"/><path fill="url(#prefix__background2)" d="M16 8h1v1h-1zM17 8h1v1h-1zM18 8h1v1h-1zM19 8h1v1h-1zM0 9h1v1H0zM1 9h1v1H1zM2 9h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 9h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 9h1v1H4zM5 9h1v1H5zM6 9h1v1H6zM7 9h1v1H7zM8 9h1v1H8zM9 9h1v1H9zM10 9h1v1h-1zM11 9h1v1h-1zM12 9h1v1h-1zM13 9h1v1h-1zM14 9h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 9h1v1h-1zM16 9h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 9h1v1h-1zM18 9h1v1h-1zM19 9h1v1h-1z"/><path fill="url(#prefix__background3)" d="M0 10h1v1H0zM1 10h1v1H1zM2 10h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 10h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 10h1v1H4zM5 10h1v1H5zM6 10h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 10h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 10h1v1H8zM9 10h1v1H9zM10 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 10h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 10h1v1h-1zM13 10h1v1h-1zM14 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 10h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 10h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 10h1v1h-1zM19 10h1v1h-1zM0 11h1v1H0zM1 11h1v1H1zM2 11h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 11h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 11h1v1H4zM5 11h1v1H5zM6 11h1v1H6zM7 11h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 11h1v1H8zM9 11h1v1H9zM10 11h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M11 11h1v1h-1zM12 11h1v1h-1zM13 11h1v1h-1zM14 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 11h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 11h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 11h1v1h-1zM19 11h1v1h-1zM0 12h1v1H0zM1 12h1v1H1zM2 12h1v1H2zM3 12h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 12h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 12h1v1H5zM6 12h1v1H6zM7 12h1v1H7zM8 12h1v1H8zM9 12h1v1H9zM10 12h1v1h-1zM11 12h1v1h-1zM12 12h1v1h-1zM13 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 12h1v1h-1zM18 12h1v1h-1zM19 12h1v1h-1zM0 13h1v1H0zM1 13h1v1H1zM2 13h1v1H2zM3 13h1v1H3zM4 13h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 13h1v1H5zM6 13h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 13h1v1H7zM8 13h1v1H8zM9 13h1v1H9zM10 13h1v1h-1zM11 13h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 13h1v1h-1zM13 13h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 13h1v1h-1zM15 13h1v1h-1zM16 13h1v1h-1zM17 13h1v1h-1zM18 13h1v1h-1zM19 13h1v1h-1zM0 14h1v1H0zM1 14h1v1H1zM2 14h1v1H2zM3 14h1v1H3zM4 14h1v1H4zM5 14h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 14h1v1H6zM7 14h1v1H7zM8 14h1v1H8zM9 14h1v1H9zM10 14h1v1h-1zM11 14h1v1h-1zM12 14h1v1h-1z"/><path fill="url(#prefix__background3)" d="M13 14h1v1h-1zM14 14h1v1h-1zM15 14h1v1h-1zM16 14h1v1h-1zM17 14h1v1h-1zM18 14h1v1h-1zM19 14h1v1h-1zM0 15h1v1H0zM1 15h1v1H1zM2 15h1v1H2zM3 15h1v1H3zM4 15h1v1H4zM5 15h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 15h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 15h1v1H7zM8 15h1v1H8zM9 15h1v1H9zM10 15h1v1h-1zM11 15h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 15h1v1h-1zM13 15h1v1h-1zM14 15h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 15h1v1h-1zM16 15h1v1h-1zM17 15h1v1h-1zM18 15h1v1h-1zM19 15h1v1h-1zM0 16h1v1H0zM1 16h1v1H1zM2 16h1v1H2zM3 16h1v1H3zM4 16h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 16h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 16h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 16h1v1H7zM8 16h1v1H8z"/><path fill="hsl(105, 69%, 30%)" d="M9 16h1v1H9zM10 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 16h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 16h1v1h-1zM13 16h1v1h-1zM14 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 16h1v1h-1z"/><path fill="url(#prefix__background3)" d="M16 16h1v1h-1zM17 16h1v1h-1zM18 16h1v1h-1zM19 16h1v1h-1zM0 17h1v1H0zM1 17h1v1H1zM2 17h1v1H2zM3 17h1v1H3zM4 17h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 17h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 17h1v1H6z"/><path fill="url(#prefix__background4)" d="M7 17h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 17h1v1H8z"/><path fill="url(#prefix__background4)" d="M9 17h1v1H9z"/><path fill="hsl(105, 69%, 30%)" d="M10 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 17h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M15 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 17h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 17h1v1h-1zM18 17h1v1h-1zM19 17h1v1h-1zM0 18h1v1H0zM1 18h1v1H1zM2 18h1v1H2zM3 18h1v1H3zM4 18h1v1H4zM5 18h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 18h1v1H6zM7 18h1v1H7z"/><path fill="url(#prefix__background3)" d="M8 18h1v1H8z"/><path fill="hsl(0, 0%, 0%)" d="M9 18h1v1H9zM10 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M11 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 18h1v1h-1zM13 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 18h1v1h-1zM16 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 18h1v1h-1zM18 18h1v1h-1zM19 18h1v1h-1zM0 19h1v1H0zM1 19h1v1H1zM2 19h1v1H2zM3 19h1v1H3zM4 19h1v1H4zM5 19h1v1H5zM6 19h1v1H6zM7 19h1v1H7zM8 19h1v1H8zM9 19h1v1H9zM10 19h1v1h-1zM11 19h1v1h-1zM12 19h1v1h-1zM13 19h1v1h-1zM14 19h1v1h-1zM15 19h1v1h-1zM16 19h1v1h-1zM17 19h1v1h-1zM18 19h1v1h-1zM19 19h1v1h-1z"/>'
          ));
    }
    function Fren2StringNeutral() public pure returns (bytes memory) {
    return bytes(
        abi.encodePacked(
            '<path fill="url(#prefix__background1)" d="M0 0h30v30H0z"/><path fill="url(#prefix__background2)" d="M0 0h1v1H0zM1 0h1v1H1zM2 0h1v1H2zM3 0h1v1H3zM4 0h1v1H4zM5 0h1v1H5zM6 0h1v1H6zM7 0h1v1H7zM8 0h1v1H8zM9 0h1v1H9zM10 0h1v1h-1zM11 0h1v1h-1zM12 0h1v1h-1zM13 0h1v1h-1zM14 0h1v1h-1zM15 0h1v1h-1zM16 0h1v1h-1zM17 0h1v1h-1zM18 0h1v1h-1zM19 0h1v1h-1zM0 1h1v1H0zM1 1h1v1H1zM2 1h1v1H2zM3 1h1v1H3zM4 1h1v1H4zM5 1h1v1H5zM6 1h1v1H6zM7 1h1v1H7zM8 1h1v1H8zM9 1h1v1H9zM10 1h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 1h1v1h-1zM12 1h1v1h-1z"/><path fill="url(#prefix__background2)" d="M13 1h1v1h-1zM14 1h1v1h-1zM15 1h1v1h-1zM16 1h1v1h-1zM17 1h1v1h-1zM18 1h1v1h-1zM19 1h1v1h-1zM0 2h1v1H0zM1 2h1v1H1zM2 2h1v1H2zM3 2h1v1H3zM4 2h1v1H4zM5 2h1v1H5zM6 2h1v1H6zM7 2h1v1H7zM8 2h1v1H8zM9 2h1v1H9z"/><path fill="hsl(0, 0%, 0%)" d="M10 2h1v1h-1z"/><path fill="url(#prefix__background4)" d="M11 2h1v1h-1zM12 2h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 2h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 2h1v1h-1zM15 2h1v1h-1zM16 2h1v1h-1zM17 2h1v1h-1zM18 2h1v1h-1zM19 2h1v1h-1zM0 3h1v1H0zM1 3h1v1H1zM2 3h1v1H2zM3 3h1v1H3zM4 3h1v1H4zM5 3h1v1H5zM6 3h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 3h1v1H7zM8 3h1v1H8zM9 3h1v1H9zM10 3h1v1h-1zM11 3h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 3h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 3h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 3h1v1h-1zM15 3h1v1h-1zM16 3h1v1h-1zM17 3h1v1h-1zM18 3h1v1h-1zM19 3h1v1h-1zM0 4h1v1H0zM1 4h1v1H1zM2 4h1v1H2zM3 4h1v1H3zM4 4h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 4h1v1H5zM6 4h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 4h1v1H7zM8 4h1v1H8zM9 4h1v1H9zM10 4h1v1h-1zM11 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 4h1v1h-1zM13 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 4h1v1h-1zM16 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 4h1v1h-1zM18 4h1v1h-1zM19 4h1v1h-1zM0 5h1v1H0zM1 5h1v1H1zM2 5h1v1H2zM3 5h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 5h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 5h1v1H5zM6 5h1v1H6zM7 5h1v1H7zM8 5h1v1H8zM9 5h1v1H9zM10 5h1v1h-1zM11 5h1v1h-1zM12 5h1v1h-1zM13 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 5h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 5h1v1h-1zM16 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 5h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 5h1v1h-1zM19 5h1v1h-1zM0 6h1v1H0zM1 6h1v1H1zM2 6h1v1H2zM3 6h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 6h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 6h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 6h1v1H6zM7 6h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 6h1v1H8zM9 6h1v1H9zM10 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 6h1v1h-1zM12 6h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 6h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 6h1v1h-1zM16 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 6h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 6h1v1h-1zM19 6h1v1h-1zM0 7h1v1H0zM1 7h1v1H1zM2 7h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 7h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 7h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 7h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 7h1v1H6z"/><path fill="hsl(0, 0%, 60%)" d="M7 7h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 7h1v1H8zM9 7h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 7h1v1h-1z"/><path fill="hsl(0, 0%, 60%)" d="M12 7h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 7h1v1h-1zM14 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 7h1v1h-1zM16 7h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 7h1v1h-1zM18 7h1v1h-1zM19 7h1v1h-1zM0 8h1v1H0zM1 8h1v1H1zM2 8h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 8h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 8h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 8h1v1H5zM6 8h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 8h1v1H7zM8 8h1v1H8zM9 8h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 8h1v1h-1zM11 8h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 8h1v1h-1zM13 8h1v1h-1zM14 8h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 8h1v1h-1z"/><path fill="url(#prefix__background2)" d="M16 8h1v1h-1zM17 8h1v1h-1zM18 8h1v1h-1zM19 8h1v1h-1zM0 9h1v1H0zM1 9h1v1H1zM2 9h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 9h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 9h1v1H4zM5 9h1v1H5zM6 9h1v1H6zM7 9h1v1H7zM8 9h1v1H8zM9 9h1v1H9zM10 9h1v1h-1zM11 9h1v1h-1zM12 9h1v1h-1zM13 9h1v1h-1zM14 9h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 9h1v1h-1zM16 9h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 9h1v1h-1zM18 9h1v1h-1zM19 9h1v1h-1z"/><path fill="url(#prefix__background3)" d="M0 10h1v1H0zM1 10h1v1H1zM2 10h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 10h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 10h1v1H4zM5 10h1v1H5zM6 10h1v1H6zM7 10h1v1H7zM8 10h1v1H8zM9 10h1v1H9zM10 10h1v1h-1zM11 10h1v1h-1zM12 10h1v1h-1zM13 10h1v1h-1zM14 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 10h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 10h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 10h1v1h-1zM19 10h1v1h-1zM0 11h1v1H0zM1 11h1v1H1zM2 11h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 11h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 11h1v1H4zM5 11h1v1H5zM6 11h1v1H6zM7 11h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 11h1v1H8zM9 11h1v1H9zM10 11h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M11 11h1v1h-1zM12 11h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 11h1v1h-1zM13 11h1v1h-1zM14 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 11h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 11h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 11h1v1h-1zM19 11h1v1h-1zM0 12h1v1H0zM1 12h1v1H1zM2 12h1v1H2zM3 12h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 12h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 12h1v1H5zM6 12h1v1H6zM7 12h1v1H7zM8 12h1v1H8zM9 12h1v1H9zM10 12h1v1h-1zM11 12h1v1h-1zM12 12h1v1h-1zM13 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 12h1v1h-1zM18 12h1v1h-1zM19 12h1v1h-1zM0 13h1v1H0zM1 13h1v1H1zM2 13h1v1H2zM3 13h1v1H3zM4 13h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 13h1v1H5zM6 13h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 13h1v1H7zM8 13h1v1H8zM9 13h1v1H9zM10 13h1v1h-1zM11 13h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 13h1v1h-1zM13 13h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 13h1v1h-1zM15 13h1v1h-1zM16 13h1v1h-1zM17 13h1v1h-1zM18 13h1v1h-1zM19 13h1v1h-1zM0 14h1v1H0zM1 14h1v1H1zM2 14h1v1H2zM3 14h1v1H3zM4 14h1v1H4zM5 14h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 14h1v1H6zM7 14h1v1H7zM8 14h1v1H8zM9 14h1v1H9zM10 14h1v1h-1zM11 14h1v1h-1zM12 14h1v1h-1z"/><path fill="url(#prefix__background3)" d="M13 14h1v1h-1zM14 14h1v1h-1zM15 14h1v1h-1zM16 14h1v1h-1zM17 14h1v1h-1zM18 14h1v1h-1zM19 14h1v1h-1zM0 15h1v1H0zM1 15h1v1H1zM2 15h1v1H2zM3 15h1v1H3zM4 15h1v1H4zM5 15h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 15h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 15h1v1H7zM8 15h1v1H8zM9 15h1v1H9zM10 15h1v1h-1zM11 15h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 15h1v1h-1zM13 15h1v1h-1zM14 15h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 15h1v1h-1zM16 15h1v1h-1zM17 15h1v1h-1zM18 15h1v1h-1zM19 15h1v1h-1zM0 16h1v1H0zM1 16h1v1H1zM2 16h1v1H2zM3 16h1v1H3zM4 16h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 16h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 16h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 16h1v1H7zM8 16h1v1H8z"/><path fill="hsl(105, 69%, 30%)" d="M9 16h1v1H9zM10 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 16h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 16h1v1h-1zM13 16h1v1h-1zM14 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 16h1v1h-1z"/><path fill="url(#prefix__background3)" d="M16 16h1v1h-1zM17 16h1v1h-1zM18 16h1v1h-1zM19 16h1v1h-1zM0 17h1v1H0zM1 17h1v1H1zM2 17h1v1H2zM3 17h1v1H3zM4 17h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 17h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 17h1v1H6z"/><path fill="url(#prefix__background4)" d="M7 17h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 17h1v1H8z"/><path fill="url(#prefix__background4)" d="M9 17h1v1H9z"/><path fill="hsl(105, 69%, 30%)" d="M10 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 17h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M15 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 17h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 17h1v1h-1zM18 17h1v1h-1zM19 17h1v1h-1zM0 18h1v1H0zM1 18h1v1H1zM2 18h1v1H2zM3 18h1v1H3zM4 18h1v1H4zM5 18h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 18h1v1H6zM7 18h1v1H7z"/><path fill="url(#prefix__background3)" d="M8 18h1v1H8z"/><path fill="hsl(0, 0%, 0%)" d="M9 18h1v1H9zM10 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M11 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 18h1v1h-1zM13 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 18h1v1h-1zM16 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 18h1v1h-1zM18 18h1v1h-1zM19 18h1v1h-1zM0 19h1v1H0zM1 19h1v1H1zM2 19h1v1H2zM3 19h1v1H3zM4 19h1v1H4zM5 19h1v1H5zM6 19h1v1H6zM7 19h1v1H7zM8 19h1v1H8zM9 19h1v1H9zM10 19h1v1h-1zM11 19h1v1h-1zM12 19h1v1h-1zM13 19h1v1h-1zM14 19h1v1h-1zM15 19h1v1h-1zM16 19h1v1h-1zM17 19h1v1h-1zM18 19h1v1h-1zM19 19h1v1h-1z"/>'
        ));
    }
}

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

pragma solidity >=0.8.0 <0.9.0;

library FrenStates2 {
    function Fren2StringSad() public pure returns (bytes memory) {
    return bytes(
        abi.encodePacked(
            '<path fill="url(#prefix__background1)" d="M0 0h30v30H0z"/><path fill="url(#prefix__background2)" d="M0 0h1v1H0zM1 0h1v1H1zM2 0h1v1H2zM3 0h1v1H3zM4 0h1v1H4zM5 0h1v1H5zM6 0h1v1H6zM7 0h1v1H7zM8 0h1v1H8zM9 0h1v1H9zM10 0h1v1h-1zM11 0h1v1h-1zM12 0h1v1h-1zM13 0h1v1h-1zM14 0h1v1h-1zM15 0h1v1h-1zM16 0h1v1h-1zM17 0h1v1h-1zM18 0h1v1h-1zM19 0h1v1h-1zM0 1h1v1H0zM1 1h1v1H1zM2 1h1v1H2zM3 1h1v1H3zM4 1h1v1H4zM5 1h1v1H5zM6 1h1v1H6zM7 1h1v1H7zM8 1h1v1H8zM9 1h1v1H9zM10 1h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 1h1v1h-1zM12 1h1v1h-1z"/><path fill="url(#prefix__background2)" d="M13 1h1v1h-1zM14 1h1v1h-1zM15 1h1v1h-1zM16 1h1v1h-1zM17 1h1v1h-1zM18 1h1v1h-1zM19 1h1v1h-1zM0 2h1v1H0zM1 2h1v1H1zM2 2h1v1H2zM3 2h1v1H3zM4 2h1v1H4zM5 2h1v1H5zM6 2h1v1H6zM7 2h1v1H7zM8 2h1v1H8zM9 2h1v1H9z"/><path fill="hsl(0, 0%, 0%)" d="M10 2h1v1h-1z"/><path fill="url(#prefix__background4)" d="M11 2h1v1h-1zM12 2h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 2h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 2h1v1h-1zM15 2h1v1h-1zM16 2h1v1h-1zM17 2h1v1h-1zM18 2h1v1h-1zM19 2h1v1h-1zM0 3h1v1H0zM1 3h1v1H1zM2 3h1v1H2zM3 3h1v1H3zM4 3h1v1H4zM5 3h1v1H5zM6 3h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 3h1v1H7zM8 3h1v1H8zM9 3h1v1H9zM10 3h1v1h-1zM11 3h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 3h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 3h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 3h1v1h-1zM15 3h1v1h-1zM16 3h1v1h-1zM17 3h1v1h-1zM18 3h1v1h-1zM19 3h1v1h-1zM0 4h1v1H0zM1 4h1v1H1zM2 4h1v1H2zM3 4h1v1H3zM4 4h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 4h1v1H5zM6 4h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 4h1v1H7zM8 4h1v1H8zM9 4h1v1H9zM10 4h1v1h-1zM11 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 4h1v1h-1zM13 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 4h1v1h-1zM16 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 4h1v1h-1zM18 4h1v1h-1zM19 4h1v1h-1zM0 5h1v1H0zM1 5h1v1H1zM2 5h1v1H2zM3 5h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 5h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 5h1v1H5zM6 5h1v1H6zM7 5h1v1H7zM8 5h1v1H8zM9 5h1v1H9zM10 5h1v1h-1zM11 5h1v1h-1zM12 5h1v1h-1zM13 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 5h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 5h1v1h-1zM16 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 5h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 5h1v1h-1zM19 5h1v1h-1zM0 6h1v1H0zM1 6h1v1H1zM2 6h1v1H2zM3 6h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 6h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 6h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 6h1v1H6zM7 6h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 6h1v1H8zM9 6h1v1H9zM10 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 6h1v1h-1zM12 6h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 6h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 6h1v1h-1zM16 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 6h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 6h1v1h-1zM19 6h1v1h-1zM0 7h1v1H0zM1 7h1v1H1zM2 7h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 7h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 7h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 7h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 7h1v1H6z"/><path fill="hsl(0, 0%, 60%)" d="M7 7h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 7h1v1H8zM9 7h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 7h1v1h-1z"/><path fill="hsl(0, 0%, 60%)" d="M12 7h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 7h1v1h-1zM14 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 7h1v1h-1zM16 7h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 7h1v1h-1zM18 7h1v1h-1zM19 7h1v1h-1zM0 8h1v1H0zM1 8h1v1H1zM2 8h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 8h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 8h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 8h1v1H5zM6 8h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 8h1v1H7zM8 8h1v1H8zM9 8h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 8h1v1h-1zM11 8h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 8h1v1h-1zM13 8h1v1h-1zM14 8h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 8h1v1h-1z"/><path fill="url(#prefix__background2)" d="M16 8h1v1h-1zM17 8h1v1h-1zM18 8h1v1h-1zM19 8h1v1h-1zM0 9h1v1H0zM1 9h1v1H1zM2 9h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 9h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 9h1v1H4zM5 9h1v1H5zM6 9h1v1H6zM7 9h1v1H7zM8 9h1v1H8zM9 9h1v1H9zM10 9h1v1h-1zM11 9h1v1h-1zM12 9h1v1h-1zM13 9h1v1h-1zM14 9h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 9h1v1h-1zM16 9h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 9h1v1h-1zM18 9h1v1h-1zM19 9h1v1h-1z"/><path fill="url(#prefix__background3)" d="M0 10h1v1H0zM1 10h1v1H1zM2 10h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 10h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 10h1v1H4zM5 10h1v1H5zM6 10h1v1H6zM7 10h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 10h1v1H8zM9 10h1v1H9zM10 10h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M11 10h1v1h-1zM12 10h1v1h-1zM13 10h1v1h-1zM14 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 10h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 10h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 10h1v1h-1zM19 10h1v1h-1zM0 11h1v1H0zM1 11h1v1H1zM2 11h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 11h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 11h1v1H4zM5 11h1v1H5zM6 11h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 11h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 11h1v1H8zM9 11h1v1H9zM10 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 11h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 11h1v1h-1zM13 11h1v1h-1zM14 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 11h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 11h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 11h1v1h-1zM19 11h1v1h-1zM0 12h1v1H0zM1 12h1v1H1zM2 12h1v1H2zM3 12h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 12h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 12h1v1H5zM6 12h1v1H6zM7 12h1v1H7zM8 12h1v1H8zM9 12h1v1H9zM10 12h1v1h-1zM11 12h1v1h-1zM12 12h1v1h-1zM13 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 12h1v1h-1zM18 12h1v1h-1zM19 12h1v1h-1zM0 13h1v1H0zM1 13h1v1H1zM2 13h1v1H2zM3 13h1v1H3zM4 13h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 13h1v1H5zM6 13h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 13h1v1H7zM8 13h1v1H8zM9 13h1v1H9zM10 13h1v1h-1zM11 13h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 13h1v1h-1zM13 13h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 13h1v1h-1zM15 13h1v1h-1zM16 13h1v1h-1zM17 13h1v1h-1zM18 13h1v1h-1zM19 13h1v1h-1zM0 14h1v1H0zM1 14h1v1H1zM2 14h1v1H2zM3 14h1v1H3zM4 14h1v1H4zM5 14h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 14h1v1H6zM7 14h1v1H7zM8 14h1v1H8zM9 14h1v1H9zM10 14h1v1h-1zM11 14h1v1h-1zM12 14h1v1h-1z"/><path fill="url(#prefix__background3)" d="M13 14h1v1h-1zM14 14h1v1h-1zM15 14h1v1h-1zM16 14h1v1h-1zM17 14h1v1h-1zM18 14h1v1h-1zM19 14h1v1h-1zM0 15h1v1H0zM1 15h1v1H1zM2 15h1v1H2zM3 15h1v1H3zM4 15h1v1H4zM5 15h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 15h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 15h1v1H7zM8 15h1v1H8zM9 15h1v1H9zM10 15h1v1h-1zM11 15h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 15h1v1h-1zM13 15h1v1h-1zM14 15h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 15h1v1h-1zM16 15h1v1h-1zM17 15h1v1h-1zM18 15h1v1h-1zM19 15h1v1h-1zM0 16h1v1H0zM1 16h1v1H1zM2 16h1v1H2zM3 16h1v1H3zM4 16h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 16h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 16h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 16h1v1H7zM8 16h1v1H8z"/><path fill="hsl(105, 69%, 30%)" d="M9 16h1v1H9zM10 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 16h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 16h1v1h-1zM13 16h1v1h-1zM14 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 16h1v1h-1z"/><path fill="url(#prefix__background3)" d="M16 16h1v1h-1zM17 16h1v1h-1zM18 16h1v1h-1zM19 16h1v1h-1zM0 17h1v1H0zM1 17h1v1H1zM2 17h1v1H2zM3 17h1v1H3zM4 17h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 17h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 17h1v1H6z"/><path fill="url(#prefix__background4)" d="M7 17h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 17h1v1H8z"/><path fill="url(#prefix__background4)" d="M9 17h1v1H9z"/><path fill="hsl(105, 69%, 30%)" d="M10 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 17h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M15 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 17h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 17h1v1h-1zM18 17h1v1h-1zM19 17h1v1h-1zM0 18h1v1H0zM1 18h1v1H1zM2 18h1v1H2zM3 18h1v1H3zM4 18h1v1H4zM5 18h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 18h1v1H6zM7 18h1v1H7z"/><path fill="url(#prefix__background3)" d="M8 18h1v1H8z"/><path fill="hsl(0, 0%, 0%)" d="M9 18h1v1H9zM10 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M11 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 18h1v1h-1zM13 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 18h1v1h-1zM16 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 18h1v1h-1zM18 18h1v1h-1zM19 18h1v1h-1zM0 19h1v1H0zM1 19h1v1H1zM2 19h1v1H2zM3 19h1v1H3zM4 19h1v1H4zM5 19h1v1H5zM6 19h1v1H6zM7 19h1v1H7zM8 19h1v1H8zM9 19h1v1H9zM10 19h1v1h-1zM11 19h1v1h-1zM12 19h1v1h-1zM13 19h1v1h-1zM14 19h1v1h-1zM15 19h1v1h-1zM16 19h1v1h-1zM17 19h1v1h-1zM18 19h1v1h-1zM19 19h1v1h-1z"/>'
        ));
    }
    function Fren2StringDead() public pure returns (bytes memory) {
    return bytes(
        abi.encodePacked(
            '<path fill="url(#prefix__background1)" d="M0 0h30v30H0z"/><path fill="url(#prefix__background2)" d="M0 0h1v1H0zM1 0h1v1H1zM2 0h1v1H2zM3 0h1v1H3zM4 0h1v1H4zM5 0h1v1H5zM6 0h1v1H6zM7 0h1v1H7zM8 0h1v1H8zM9 0h1v1H9zM10 0h1v1h-1zM11 0h1v1h-1zM12 0h1v1h-1zM13 0h1v1h-1zM14 0h1v1h-1zM15 0h1v1h-1zM16 0h1v1h-1zM17 0h1v1h-1zM18 0h1v1h-1zM19 0h1v1h-1zM0 1h1v1H0zM1 1h1v1H1zM2 1h1v1H2zM3 1h1v1H3zM4 1h1v1H4zM5 1h1v1H5zM6 1h1v1H6zM7 1h1v1H7zM8 1h1v1H8zM9 1h1v1H9zM10 1h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 1h1v1h-1zM12 1h1v1h-1z"/><path fill="url(#prefix__background2)" d="M13 1h1v1h-1zM14 1h1v1h-1zM15 1h1v1h-1zM16 1h1v1h-1zM17 1h1v1h-1zM18 1h1v1h-1zM19 1h1v1h-1zM0 2h1v1H0zM1 2h1v1H1zM2 2h1v1H2zM3 2h1v1H3zM4 2h1v1H4zM5 2h1v1H5zM6 2h1v1H6zM7 2h1v1H7zM8 2h1v1H8zM9 2h1v1H9z"/><path fill="hsl(0, 0%, 0%)" d="M10 2h1v1h-1z"/><path fill="url(#prefix__background4)" d="M11 2h1v1h-1zM12 2h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 2h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 2h1v1h-1zM15 2h1v1h-1zM16 2h1v1h-1zM17 2h1v1h-1zM18 2h1v1h-1zM19 2h1v1h-1zM0 3h1v1H0zM1 3h1v1H1zM2 3h1v1H2zM3 3h1v1H3zM4 3h1v1H4zM5 3h1v1H5zM6 3h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 3h1v1H7zM8 3h1v1H8zM9 3h1v1H9zM10 3h1v1h-1zM11 3h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 3h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M13 3h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 3h1v1h-1zM15 3h1v1h-1zM16 3h1v1h-1zM17 3h1v1h-1zM18 3h1v1h-1zM19 3h1v1h-1zM0 4h1v1H0zM1 4h1v1H1zM2 4h1v1H2zM3 4h1v1H3zM4 4h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 4h1v1H5zM6 4h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 4h1v1H7zM8 4h1v1H8zM9 4h1v1H9zM10 4h1v1h-1zM11 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 4h1v1h-1zM13 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M14 4h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 4h1v1h-1zM16 4h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 4h1v1h-1zM18 4h1v1h-1zM19 4h1v1h-1zM0 5h1v1H0zM1 5h1v1H1zM2 5h1v1H2zM3 5h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 5h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 5h1v1H5zM6 5h1v1H6zM7 5h1v1H7zM8 5h1v1H8zM9 5h1v1H9zM10 5h1v1h-1zM11 5h1v1h-1zM12 5h1v1h-1zM13 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 5h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 5h1v1h-1zM16 5h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 5h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 5h1v1h-1zM19 5h1v1h-1zM0 6h1v1H0zM1 6h1v1H1zM2 6h1v1H2zM3 6h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 6h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 6h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 6h1v1H6zM7 6h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 6h1v1H8zM9 6h1v1H9zM10 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 6h1v1h-1zM12 6h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 6h1v1h-1z"/><path fill="url(#prefix__background4)" d="M15 6h1v1h-1zM16 6h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 6h1v1h-1z"/><path fill="url(#prefix__background2)" d="M18 6h1v1h-1zM19 6h1v1h-1zM0 7h1v1H0zM1 7h1v1H1zM2 7h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 7h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 7h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 7h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 7h1v1H6zM7 7h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 7h1v1H8zM9 7h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 7h1v1h-1zM12 7h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 7h1v1h-1zM14 7h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 7h1v1h-1zM16 7h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 7h1v1h-1zM18 7h1v1h-1zM19 7h1v1h-1zM0 8h1v1H0zM1 8h1v1H1zM2 8h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 8h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 8h1v1H4z"/><path fill="url(#prefix__background5)" d="M5 8h1v1H5zM6 8h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 8h1v1H7zM8 8h1v1H8zM9 8h1v1H9z"/><path fill="url(#prefix__background5)" d="M10 8h1v1h-1zM11 8h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 8h1v1h-1zM13 8h1v1h-1zM14 8h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 8h1v1h-1z"/><path fill="url(#prefix__background2)" d="M16 8h1v1h-1zM17 8h1v1h-1zM18 8h1v1h-1zM19 8h1v1h-1zM0 9h1v1H0zM1 9h1v1H1zM2 9h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 9h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 9h1v1H4zM5 9h1v1H5zM6 9h1v1H6zM7 9h1v1H7zM8 9h1v1H8zM9 9h1v1H9zM10 9h1v1h-1zM11 9h1v1h-1zM12 9h1v1h-1zM13 9h1v1h-1zM14 9h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 9h1v1h-1zM16 9h1v1h-1z"/><path fill="url(#prefix__background2)" d="M17 9h1v1h-1zM18 9h1v1h-1zM19 9h1v1h-1z"/><path fill="url(#prefix__background3)" d="M0 10h1v1H0zM1 10h1v1H1zM2 10h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 10h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 10h1v1H4zM5 10h1v1H5zM6 10h1v1H6zM7 10h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 10h1v1H8zM9 10h1v1H9zM10 10h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M11 10h1v1h-1zM12 10h1v1h-1zM13 10h1v1h-1zM14 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 10h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 10h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 10h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 10h1v1h-1zM19 10h1v1h-1zM0 11h1v1H0zM1 11h1v1H1zM2 11h1v1H2z"/><path fill="hsl(0, 0%, 0%)" d="M3 11h1v1H3z"/><path fill="hsl(105, 69%, 30%)" d="M4 11h1v1H4zM5 11h1v1H5zM6 11h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 11h1v1H7z"/><path fill="hsl(105, 69%, 30%)" d="M8 11h1v1H8zM9 11h1v1H9zM10 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 11h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 11h1v1h-1zM13 11h1v1h-1zM14 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 11h1v1h-1z"/><path fill="url(#prefix__background4)" d="M16 11h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M17 11h1v1h-1z"/><path fill="url(#prefix__background3)" d="M18 11h1v1h-1zM19 11h1v1h-1zM0 12h1v1H0zM1 12h1v1H1zM2 12h1v1H2zM3 12h1v1H3z"/><path fill="hsl(0, 0%, 0%)" d="M4 12h1v1H4z"/><path fill="hsl(105, 69%, 30%)" d="M5 12h1v1H5zM6 12h1v1H6zM7 12h1v1H7zM8 12h1v1H8zM9 12h1v1H9zM10 12h1v1h-1zM11 12h1v1h-1zM12 12h1v1h-1zM13 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 12h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 12h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 12h1v1h-1zM18 12h1v1h-1zM19 12h1v1h-1zM0 13h1v1H0zM1 13h1v1H1zM2 13h1v1H2zM3 13h1v1H3zM4 13h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 13h1v1H5zM6 13h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 13h1v1H7zM8 13h1v1H8zM9 13h1v1H9zM10 13h1v1h-1zM11 13h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 13h1v1h-1zM13 13h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 13h1v1h-1zM15 13h1v1h-1zM16 13h1v1h-1zM17 13h1v1h-1zM18 13h1v1h-1zM19 13h1v1h-1zM0 14h1v1H0zM1 14h1v1H1zM2 14h1v1H2zM3 14h1v1H3zM4 14h1v1H4zM5 14h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 14h1v1H6zM7 14h1v1H7zM8 14h1v1H8zM9 14h1v1H9zM10 14h1v1h-1zM11 14h1v1h-1zM12 14h1v1h-1z"/><path fill="url(#prefix__background3)" d="M13 14h1v1h-1zM14 14h1v1h-1zM15 14h1v1h-1zM16 14h1v1h-1zM17 14h1v1h-1zM18 14h1v1h-1zM19 14h1v1h-1zM0 15h1v1H0zM1 15h1v1H1zM2 15h1v1H2zM3 15h1v1H3zM4 15h1v1H4zM5 15h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 15h1v1H6z"/><path fill="hsl(105, 69%, 30%)" d="M7 15h1v1H7zM8 15h1v1H8zM9 15h1v1H9zM10 15h1v1h-1zM11 15h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 15h1v1h-1zM13 15h1v1h-1zM14 15h1v1h-1z"/><path fill="url(#prefix__background3)" d="M15 15h1v1h-1zM16 15h1v1h-1zM17 15h1v1h-1zM18 15h1v1h-1zM19 15h1v1h-1zM0 16h1v1H0zM1 16h1v1H1zM2 16h1v1H2zM3 16h1v1H3zM4 16h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 16h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 16h1v1H6z"/><path fill="hsl(0, 0%, 0%)" d="M7 16h1v1H7zM8 16h1v1H8z"/><path fill="hsl(105, 69%, 30%)" d="M9 16h1v1H9zM10 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 16h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M12 16h1v1h-1zM13 16h1v1h-1zM14 16h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 16h1v1h-1z"/><path fill="url(#prefix__background3)" d="M16 16h1v1h-1zM17 16h1v1h-1zM18 16h1v1h-1zM19 16h1v1h-1zM0 17h1v1H0zM1 17h1v1H1zM2 17h1v1H2zM3 17h1v1H3zM4 17h1v1H4z"/><path fill="hsl(0, 0%, 0%)" d="M5 17h1v1H5z"/><path fill="hsl(105, 69%, 30%)" d="M6 17h1v1H6z"/><path fill="url(#prefix__background4)" d="M7 17h1v1H7z"/><path fill="hsl(0, 0%, 0%)" d="M8 17h1v1H8z"/><path fill="url(#prefix__background4)" d="M9 17h1v1H9z"/><path fill="hsl(105, 69%, 30%)" d="M10 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M11 17h1v1h-1z"/><path fill="url(#prefix__background4)" d="M12 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M13 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M14 17h1v1h-1z"/><path fill="hsl(105, 69%, 30%)" d="M15 17h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M16 17h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 17h1v1h-1zM18 17h1v1h-1zM19 17h1v1h-1zM0 18h1v1H0zM1 18h1v1H1zM2 18h1v1H2zM3 18h1v1H3zM4 18h1v1H4zM5 18h1v1H5z"/><path fill="hsl(0, 0%, 0%)" d="M6 18h1v1H6zM7 18h1v1H7z"/><path fill="url(#prefix__background3)" d="M8 18h1v1H8z"/><path fill="hsl(0, 0%, 0%)" d="M9 18h1v1H9zM10 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M11 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M12 18h1v1h-1zM13 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M14 18h1v1h-1z"/><path fill="hsl(0, 0%, 0%)" d="M15 18h1v1h-1zM16 18h1v1h-1z"/><path fill="url(#prefix__background3)" d="M17 18h1v1h-1zM18 18h1v1h-1zM19 18h1v1h-1zM0 19h1v1H0zM1 19h1v1H1zM2 19h1v1H2zM3 19h1v1H3zM4 19h1v1H4zM5 19h1v1H5zM6 19h1v1H6zM7 19h1v1H7zM8 19h1v1H8zM9 19h1v1H9zM10 19h1v1h-1zM11 19h1v1h-1zM12 19h1v1h-1zM13 19h1v1h-1zM14 19h1v1h-1zM15 19h1v1h-1zM16 19h1v1h-1zM17 19h1v1h-1zM18 19h1v1h-1zM19 19h1v1h-1z"/>'
        ));
    }
}

File 19 of 19 : console.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

library console {
    address constant CONSOLE_ADDRESS =
        0x000000000000000000636F6e736F6c652e6c6f67;

    function _sendLogPayloadImplementation(bytes memory payload) internal view {
        address consoleAddress = CONSOLE_ADDRESS;
        /// @solidity memory-safe-assembly
        assembly {
            pop(
                staticcall(
                    gas(),
                    consoleAddress,
                    add(payload, 32),
                    mload(payload),
                    0,
                    0
                )
            )
        }
    }

    function _castToPure(
      function(bytes memory) internal view fnIn
    ) internal pure returns (function(bytes memory) pure fnOut) {
        assembly {
            fnOut := fnIn
        }
    }

    function _sendLogPayload(bytes memory payload) internal pure {
        _castToPure(_sendLogPayloadImplementation)(payload);
    }

    function log() internal pure {
        _sendLogPayload(abi.encodeWithSignature("log()"));
    }
    function logInt(int256 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
    }

    function logUint(uint256 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
    }

    function logString(string memory p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string)", p0));
    }

    function logBool(bool p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
    }

    function logAddress(address p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address)", p0));
    }

    function logBytes(bytes memory p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
    }

    function logBytes1(bytes1 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
    }

    function logBytes2(bytes2 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
    }

    function logBytes3(bytes3 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
    }

    function logBytes4(bytes4 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
    }

    function logBytes5(bytes5 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
    }

    function logBytes6(bytes6 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
    }

    function logBytes7(bytes7 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
    }

    function logBytes8(bytes8 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
    }

    function logBytes9(bytes9 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
    }

    function logBytes10(bytes10 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
    }

    function logBytes11(bytes11 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
    }

    function logBytes12(bytes12 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
    }

    function logBytes13(bytes13 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
    }

    function logBytes14(bytes14 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
    }

    function logBytes15(bytes15 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
    }

    function logBytes16(bytes16 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
    }

    function logBytes17(bytes17 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
    }

    function logBytes18(bytes18 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
    }

    function logBytes19(bytes19 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
    }

    function logBytes20(bytes20 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
    }

    function logBytes21(bytes21 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
    }

    function logBytes22(bytes22 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
    }

    function logBytes23(bytes23 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
    }

    function logBytes24(bytes24 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
    }

    function logBytes25(bytes25 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
    }

    function logBytes26(bytes26 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
    }

    function logBytes27(bytes27 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
    }

    function logBytes28(bytes28 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
    }

    function logBytes29(bytes29 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
    }

    function logBytes30(bytes30 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
    }

    function logBytes31(bytes31 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
    }

    function logBytes32(bytes32 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
    }

    function log(uint256 p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
    }

    function log(string memory p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string)", p0));
    }

    function log(bool p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
    }

    function log(address p0) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address)", p0));
    }

    function log(uint256 p0, uint256 p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1));
    }

    function log(uint256 p0, string memory p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1));
    }

    function log(uint256 p0, bool p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1));
    }

    function log(uint256 p0, address p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1));
    }

    function log(string memory p0, uint256 p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1));
    }

    function log(string memory p0, string memory p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
    }

    function log(string memory p0, bool p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
    }

    function log(string memory p0, address p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
    }

    function log(bool p0, uint256 p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1));
    }

    function log(bool p0, string memory p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
    }

    function log(bool p0, bool p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
    }

    function log(bool p0, address p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
    }

    function log(address p0, uint256 p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1));
    }

    function log(address p0, string memory p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
    }

    function log(address p0, bool p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
    }

    function log(address p0, address p1) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
    }

    function log(uint256 p0, uint256 p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2));
    }

    function log(uint256 p0, uint256 p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2));
    }

    function log(uint256 p0, uint256 p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2));
    }

    function log(uint256 p0, uint256 p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2));
    }

    function log(uint256 p0, string memory p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2));
    }

    function log(uint256 p0, string memory p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2));
    }

    function log(uint256 p0, string memory p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2));
    }

    function log(uint256 p0, string memory p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2));
    }

    function log(uint256 p0, bool p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2));
    }

    function log(uint256 p0, bool p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2));
    }

    function log(uint256 p0, bool p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2));
    }

    function log(uint256 p0, bool p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2));
    }

    function log(uint256 p0, address p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2));
    }

    function log(uint256 p0, address p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2));
    }

    function log(uint256 p0, address p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2));
    }

    function log(uint256 p0, address p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2));
    }

    function log(string memory p0, uint256 p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2));
    }

    function log(string memory p0, uint256 p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2));
    }

    function log(string memory p0, uint256 p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2));
    }

    function log(string memory p0, uint256 p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2));
    }

    function log(string memory p0, string memory p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2));
    }

    function log(string memory p0, string memory p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
    }

    function log(string memory p0, string memory p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
    }

    function log(string memory p0, string memory p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
    }

    function log(string memory p0, bool p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2));
    }

    function log(string memory p0, bool p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
    }

    function log(string memory p0, bool p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
    }

    function log(string memory p0, bool p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
    }

    function log(string memory p0, address p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2));
    }

    function log(string memory p0, address p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
    }

    function log(string memory p0, address p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
    }

    function log(string memory p0, address p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
    }

    function log(bool p0, uint256 p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2));
    }

    function log(bool p0, uint256 p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2));
    }

    function log(bool p0, uint256 p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2));
    }

    function log(bool p0, uint256 p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2));
    }

    function log(bool p0, string memory p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2));
    }

    function log(bool p0, string memory p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
    }

    function log(bool p0, string memory p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
    }

    function log(bool p0, string memory p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
    }

    function log(bool p0, bool p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2));
    }

    function log(bool p0, bool p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
    }

    function log(bool p0, bool p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
    }

    function log(bool p0, bool p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
    }

    function log(bool p0, address p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2));
    }

    function log(bool p0, address p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
    }

    function log(bool p0, address p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
    }

    function log(bool p0, address p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
    }

    function log(address p0, uint256 p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2));
    }

    function log(address p0, uint256 p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2));
    }

    function log(address p0, uint256 p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2));
    }

    function log(address p0, uint256 p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2));
    }

    function log(address p0, string memory p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2));
    }

    function log(address p0, string memory p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
    }

    function log(address p0, string memory p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
    }

    function log(address p0, string memory p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
    }

    function log(address p0, bool p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2));
    }

    function log(address p0, bool p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
    }

    function log(address p0, bool p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
    }

    function log(address p0, bool p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
    }

    function log(address p0, address p1, uint256 p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2));
    }

    function log(address p0, address p1, string memory p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
    }

    function log(address p0, address p1, bool p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
    }

    function log(address p0, address p1, address p2) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
    }

    function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, uint256 p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, string memory p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, bool p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3));
    }

    function log(uint256 p0, address p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, uint256 p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, string memory p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, bool p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
    }

    function log(string memory p0, address p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, uint256 p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, string memory p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, bool p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
    }

    function log(bool p0, address p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3));
    }

    function log(address p0, uint256 p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
    }

    function log(address p0, string memory p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
    }

    function log(address p0, bool p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, uint256 p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, uint256 p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, uint256 p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, uint256 p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, string memory p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, string memory p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, string memory p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, string memory p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, bool p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, bool p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, bool p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, bool p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, address p2, uint256 p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, address p2, string memory p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, address p2, bool p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
    }

    function log(address p0, address p1, address p2, address p3) internal pure {
        _sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
    }

}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "contracts/FrenStates1.sol": {
      "FrenStates1": "0x66b87930130f38620501765b834846a8951b116c"
    },
    "contracts/FrenStates2.sol": {
      "FrenStates2": "0xd97e627d881cc88655872bcda853d0a1c20fc0da"
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"buildImage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"buildMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"calculateDaysAlive","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"clean","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cleanCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"feed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"feedCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"frens","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"givenName","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"int256","name":"happiness","type":"int256"},{"internalType":"int256","name":"energy","type":"int256"},{"internalType":"int256","name":"cleanliness","type":"int256"},{"internalType":"string","name":"frenColor1","type":"string"},{"internalType":"string","name":"frenColor2","type":"string"},{"internalType":"string","name":"frenColor3","type":"string"},{"internalType":"string","name":"frenColor4","type":"string"},{"internalType":"uint256","name":"bornTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generationCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getPlayerByIndex","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"givenName","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"int256","name":"happiness","type":"int256"},{"internalType":"int256","name":"energy","type":"int256"},{"internalType":"int256","name":"cleanliness","type":"int256"},{"internalType":"string","name":"frenColor1","type":"string"},{"internalType":"string","name":"frenColor2","type":"string"},{"internalType":"string","name":"frenColor3","type":"string"},{"internalType":"string","name":"frenColor4","type":"string"},{"internalType":"uint256","name":"bornTimestamp","type":"uint256"}],"internalType":"struct FrensOnChain.Fren","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isAlive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"play","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"playCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mod","type":"uint256"},{"internalType":"uint256","name":"_seed","type":"uint256"},{"internalType":"uint256","name":"_salt","type":"uint256"}],"name":"randomNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"revive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reviveCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"_name","type":"string"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setFrenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052671bc16d674ec80000600c55670de0b6b3a7640000600d55670de0b6b3a7640000600e55670de0b6b3a7640000600f5568056bc75e2d631000006010553480156200004e57600080fd5b506040518060400160405280600c81526020016b233932b739a7b721b430b4b760a11b815250604051806040016040528060058152602001644652454e5360d81b8152508160009081620000a39190620001d0565b506001620000b28282620001d0565b505050620000cf620000c9620000d560201b60201c565b620000d9565b6200029c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015657607f821691505b6020821081036200017757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cb57600081815260208120601f850160051c81016020861015620001a65750805b601f850160051c820191505b81811015620001c757828155600101620001b2565b5050505b505050565b81516001600160401b03811115620001ec57620001ec6200012b565b6200020481620001fd845462000141565b846200017d565b602080601f8311600181146200023c5760008415620002235750858301515b600019600386901b1c1916600185901b178555620001c7565b600085815260208120601f198616915b828110156200026d578886015182559484019460019091019084016200024c565b50858210156200028c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b615bc980620002ac6000396000f3fe6080604052600436106102855760003560e01c8063715018a611610153578063b88d4fde116100cb578063ee2dc0011161007f578063f48f0d8d11610064578063f48f0d8d146106c7578063f59dfdfb146106f4578063fb22198b1461070757600080fd5b8063ee2dc00114610687578063f2fde38b146106a757600080fd5b8063d84b2361116100b0578063d84b2361146105fe578063e985e9c51461061e578063edf877041461066757600080fd5b8063b88d4fde146105be578063c87b56dd146105de57600080fd5b806395d89b4111610122578063a07b6a4211610107578063a07b6a4214610551578063a22cb46514610567578063b24767b71461058757600080fd5b806395d89b411461051c5780639b3830581461053157600080fd5b8063715018a6146104c05780637e7196e3146104d55780638baecc21146104eb5780638da5cb5b146104fe57600080fd5b80632ba80eba1161020157806356982b09116101b5578063674ef0fa1161019a578063674ef0fa1461047a5780636898f82b1461048d57806370a08231146104a057600080fd5b806356982b09146104445780636352211e1461045a57600080fd5b80633ccfd60b116101e65780633ccfd60b146103fc57806342842e0e146104045780634f6ccce71461042457600080fd5b80632ba80eba146103bc5780632f745c59146103dc57600080fd5b8063095ea7b31161025857806318160ddd1161023d57806318160ddd1461036757806323b872dd1461037c578063282946401461039c57600080fd5b8063095ea7b31461033d5780631249c58b1461035f57600080fd5b806301ffc9a71461028a57806303cf4d21146102bf57806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561029657600080fd5b506102aa6102a5366004614823565b61071d565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d5600e5481565b6040519081526020016102b6565b3480156102ef57600080fd5b506102f8610761565b6040516102b69190614897565b34801561031157600080fd5b506103256103203660046148aa565b6107f3565b6040516001600160a01b0390911681526020016102b6565b34801561034957600080fd5b5061035d6103583660046148df565b61081a565b005b61035d610950565b34801561037357600080fd5b506008546102d5565b34801561038857600080fd5b5061035d610397366004614909565b610b9c565b3480156103a857600080fd5b506102d56103b7366004614945565b610c13565b3480156103c857600080fd5b506102f86103d73660046148aa565b610cb5565b3480156103e857600080fd5b506102d56103f73660046148df565b611490565b61035d611538565b34801561041057600080fd5b5061035d61041f366004614909565b6115b4565b34801561043057600080fd5b506102d561043f3660046148aa565b6115cf565b34801561045057600080fd5b506102d560105481565b34801561046657600080fd5b506103256104753660046148aa565b611673565b61035d6104883660046148aa565b6116d8565b61035d61049b3660046148aa565b61183c565b3480156104ac57600080fd5b506102d56104bb366004614971565b61199f565b3480156104cc57600080fd5b5061035d611a39565b3480156104e157600080fd5b506102d5600c5481565b61035d6104f93660046148aa565b611a4d565b34801561050a57600080fd5b50600a546001600160a01b0316610325565b34801561052857600080fd5b506102f8611bc2565b34801561053d57600080fd5b5061035d61054c366004614a39565b611bd1565b34801561055d57600080fd5b506102d5600d5481565b34801561057357600080fd5b5061035d610582366004614a92565b611cf0565b34801561059357600080fd5b506105a76105a23660046148aa565b611cff565b6040516102b69b9a99989796959493929190614ace565b3480156105ca57600080fd5b5061035d6105d9366004614b88565b612109565b3480156105ea57600080fd5b506102f86105f93660046148aa565b612181565b34801561060a57600080fd5b506102aa6106193660046148aa565b612217565b34801561062a57600080fd5b506102aa610639366004614c04565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067357600080fd5b506102f86106823660046148aa565b612754565b34801561069357600080fd5b506102d56106a23660046148aa565b612bee565b3480156106b357600080fd5b5061035d6106c2366004614971565b6130da565b3480156106d357600080fd5b506106e76106e23660046148aa565b613167565b6040516102b69190614c37565b61035d6107023660046148aa565b613683565b34801561071357600080fd5b506102d5600f5481565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061075b575061075b826137e7565b92915050565b60606000805461077090614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90614d3d565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe82613882565b506000908152600460205260409020546001600160a01b031690565b600061082582611673565b9050806001600160a01b0316836001600160a01b0316036108b35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806108cf57506108cf8133610639565b6109415760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016108aa565b61094b83836138e6565b505050565b600061095b60085490565b9050600060405180610160016040528061098084600161097b9190614d8d565b613961565b6040516020016109909190614dbc565b604051602081830303815290604052815260200160405180602001604052806000815250815260200160405180610140016040528061010e8152602001615a4661010e913981526020016065815260200160658152602001606581526020016109ff61097b6101694487610c13565b8152602001610a1961097b610169426103b788601e614d8d565b8152602001610a2d61097b60654442610c13565b8152602001610a4761097b610169446103b788600a614d8d565b8152602001428152509050610a64600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a8b57600c54341015610a8b57600080fd5b80600b6000610a9b856001614d8d565b8152602081019190915260400160002081518190610ab99082614e4f565b5060208201516001820190610ace9082614e4f565b5060408201516002820190610ae39082614e4f565b50606082015160038201556080820151600482015560a0820151600582015560c08201516006820190610b169082614e4f565b5060e08201516007820190610b2b9082614e4f565b506101008201516008820190610b419082614e4f565b506101208201516009820190610b579082614e4f565b506101409190910151600a90910155610b7a33610b75846001614d8d565b613a01565b6064600c546065610b8b9190614f0f565b610b959190614f3c565b600c555050565b610ba63382613a1b565b610c085760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016108aa565b61094b838383613a99565b604080514260208083018290523360601b6bffffffffffffffffffffffff19168385018190526054840187905260748085018790528551808603909101815260948501865280519083012060b485019390935260d484015260e883018690526101088301859052610128808401839052845180850390910181526101489093019093528151919092012060009190610cac908690614f50565b95945050505050565b60606000600b600084815260200190815260200160002060405180610160016040529081600082018054610ce890614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1490614d3d565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b50505050508152602001600182018054610d7a90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610da690614d3d565b8015610df35780601f10610dc857610100808354040283529160200191610df3565b820191906000526020600020905b815481529060010190602001808311610dd657829003601f168201915b50505050508152602001600282018054610e0c90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3890614d3d565b8015610e855780601f10610e5a57610100808354040283529160200191610e85565b820191906000526020600020905b815481529060010190602001808311610e6857829003601f168201915b50505050508152602001600382015481526020016004820154815260200160058201548152602001600682018054610ebc90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee890614d3d565b8015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b50505050508152602001600782018054610f4e90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a90614d3d565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b50505050508152602001600882018054610fe090614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461100c90614d3d565b80156110595780601f1061102e57610100808354040283529160200191611059565b820191906000526020600020905b81548152906001019060200180831161103c57829003601f168201915b5050505050815260200160098201805461107290614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461109e90614d3d565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b50505050508152602001600a8201548152505090506060600061110d85612bee565b9050600083602001519050600082856080015161112a9190614f64565b90506000838660a0015161113e9190614f64565b905060008487606001516111529190614f64565b9050620186a08312611165576201869f92505b620186a08212611176576201869f91505b620186a0811261118657506201869f5b60008760c001518860e001518961010001518a61012001516040516020016111b19493929190614f8b565b604051602081830303815290604052905060006111cd8b613961565b866111d785613cac565b6111e088613cac565b6111e988613cac565b6040516020016111fd95949392919061537f565b60405160208183030381529060405290506112178b612217565b156113d7576046851215801561122e575060468412155b801561123b575060468312155b156112b8577366b87930130f38620501765b834846a8951b116c63bf09eab76040518163ffffffff1660e01b8152600401600060405180830381865af4158015611289573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112b19190810190615590565b9750611399565b602885121580156112ca575060288412155b80156112d7575060288312155b15611325577366b87930130f38620501765b834846a8951b116c63fb7d81636040518163ffffffff1660e01b8152600401600060405180830381865af4158015611289573d6000803e3d6000fd5b73d97e627d881cc88655872bcda853d0a1c20fc0da63b1824d896040518163ffffffff1660e01b8152600401600060405180830381865af415801561136e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113969190810190615590565b97505b60006113c7838a846040516020016113b3939291906155fe565b604051602081830303815290604052613d35565b9c9b505050505050505050505050565b73d97e627d881cc88655872bcda853d0a1c20fc0da63e8173e1b6040518163ffffffff1660e01b8152600401600060405180830381865af4158015611420573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114489190810190615590565b97506114538b613961565b86604051602001611465929190615641565b604051602081830303815290604052905060006113c7838a846040516020016113b3939291906155fe565b600061149b8361199f565b821061150f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108aa565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b611540613ed3565b6000611554600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461159e576040519150601f19603f3d011682016040523d82523d6000602084013e6115a3565b606091505b50509050806115b157600080fd5b50565b61094b83838360405180602001604052806000815250612109565b60006115da60085490565b821061164e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108aa565b600882815481106116615761166161580b565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061075b5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108aa565b6000818152600260205260409020546001600160a01b03166117505760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b61175981612217565b61179a5760405162461bcd60e51b815260206004820152601260248201527154686174204672656e20697320646561642160701b60448201526064016108aa565b336117a482611673565b6001600160a01b0316146118065760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b600e5434101561181557600080fd5b6000818152600b602052604090206005810154611833906003615821565b60059091015550565b6000818152600260205260409020546001600160a01b03166118b45760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6118bd81612217565b6118fe5760405162461bcd60e51b815260206004820152601260248201527154686174204672656e20697320646561642160701b60448201526064016108aa565b3361190882611673565b6001600160a01b03161461196a5760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b600f5434101561197957600080fd5b6000818152600b6020526040902060038082015461199691615821565b60039091015550565b60006001600160a01b038216611a1d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016108aa565b506001600160a01b031660009081526003602052604090205490565b611a41613ed3565b611a4b6000613f2d565b565b6000818152600260205260409020546001600160a01b0316611ac55760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b611ace81612217565b15611b1b5760405162461bcd60e51b815260206004820152601960248201527f54686174204672656e206973207374696c6c20616c697665210000000000000060448201526064016108aa565b33611b2582611673565b6001600160a01b031614611b875760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b601054341015611b9657600080fd5b6000908152600b6020526040902060656004820181905560058201819055600382015542600a90910155565b60606001805461077090614d3d565b33611bdb82611673565b6001600160a01b031614611c565760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420746865206f776e65722773206f6620746869732060448201527f6672656e0000000000000000000000000000000000000000000000000000000060648201526084016108aa565b600a82511115611cce5760405162461bcd60e51b815260206004820152602560248201527f4e616d652063616e2774206265206d6f7265207468616e20313020636861726160448201527f637465727300000000000000000000000000000000000000000000000000000060648201526084016108aa565b6000818152600b6020526040902060018101611cea8482614e4f565b50505050565b611cfb338383613f8c565b5050565b600b60205260009081526040902080548190611d1a90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4690614d3d565b8015611d935780601f10611d6857610100808354040283529160200191611d93565b820191906000526020600020905b815481529060010190602001808311611d7657829003601f168201915b505050505090806001018054611da890614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd490614d3d565b8015611e215780601f10611df657610100808354040283529160200191611e21565b820191906000526020600020905b815481529060010190602001808311611e0457829003601f168201915b505050505090806002018054611e3690614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6290614d3d565b8015611eaf5780601f10611e8457610100808354040283529160200191611eaf565b820191906000526020600020905b815481529060010190602001808311611e9257829003601f168201915b505050505090806003015490806004015490806005015490806006018054611ed690614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0290614d3d565b8015611f4f5780601f10611f2457610100808354040283529160200191611f4f565b820191906000526020600020905b815481529060010190602001808311611f3257829003601f168201915b505050505090806007018054611f6490614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9090614d3d565b8015611fdd5780601f10611fb257610100808354040283529160200191611fdd565b820191906000526020600020905b815481529060010190602001808311611fc057829003601f168201915b505050505090806008018054611ff290614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461201e90614d3d565b801561206b5780601f106120405761010080835404028352916020019161206b565b820191906000526020600020905b81548152906001019060200180831161204e57829003601f168201915b50505050509080600901805461208090614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546120ac90614d3d565b80156120f95780601f106120ce576101008083540402835291602001916120f9565b820191906000526020600020905b8154815290600101906020018083116120dc57829003601f168201915b50505050509080600a015490508b565b6121133383613a1b565b6121755760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016108aa565b611cea8484848461405a565b6000818152600260205260409020546060906001600160a01b031661220e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108aa565b61075b82612754565b6000818152600260205260408120546001600160a01b031661228f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6000828152600b6020526040808220815161016081019092528054829082906122b790614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546122e390614d3d565b80156123305780601f1061230557610100808354040283529160200191612330565b820191906000526020600020905b81548152906001019060200180831161231357829003601f168201915b5050505050815260200160018201805461234990614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461237590614d3d565b80156123c25780601f10612397576101008083540402835291602001916123c2565b820191906000526020600020905b8154815290600101906020018083116123a557829003601f168201915b505050505081526020016002820180546123db90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461240790614d3d565b80156124545780601f1061242957610100808354040283529160200191612454565b820191906000526020600020905b81548152906001019060200180831161243757829003601f168201915b5050505050815260200160038201548152602001600482015481526020016005820154815260200160068201805461248b90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546124b790614d3d565b80156125045780601f106124d957610100808354040283529160200191612504565b820191906000526020600020905b8154815290600101906020018083116124e757829003601f168201915b5050505050815260200160078201805461251d90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461254990614d3d565b80156125965780601f1061256b57610100808354040283529160200191612596565b820191906000526020600020905b81548152906001019060200180831161257957829003601f168201915b505050505081526020016008820180546125af90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546125db90614d3d565b80156126285780601f106125fd57610100808354040283529160200191612628565b820191906000526020600020905b81548152906001019060200180831161260b57829003601f168201915b5050505050815260200160098201805461264190614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461266d90614d3d565b80156126ba5780601f1061268f576101008083540402835291602001916126ba565b820191906000526020600020905b81548152906001019060200180831161269d57829003601f168201915b50505050508152602001600a82015481525050905060006126da84612bee565b905060008183608001516126ee9190614f64565b90506000828460a001516127029190614f64565b905060008385606001516127169190614f64565b9050600083131580612729575060008213155b80612735575060008113155b15612747575060009695505050505050565b5060019695505050505050565b60606000600b60008481526020019081526020016000206040518061016001604052908160008201805461278790614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546127b390614d3d565b80156128005780601f106127d557610100808354040283529160200191612800565b820191906000526020600020905b8154815290600101906020018083116127e357829003601f168201915b5050505050815260200160018201805461281990614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461284590614d3d565b80156128925780601f1061286757610100808354040283529160200191612892565b820191906000526020600020905b81548152906001019060200180831161287557829003601f168201915b505050505081526020016002820180546128ab90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546128d790614d3d565b80156129245780601f106128f957610100808354040283529160200191612924565b820191906000526020600020905b81548152906001019060200180831161290757829003601f168201915b5050505050815260200160038201548152602001600482015481526020016005820154815260200160068201805461295b90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461298790614d3d565b80156129d45780601f106129a9576101008083540402835291602001916129d4565b820191906000526020600020905b8154815290600101906020018083116129b757829003601f168201915b505050505081526020016007820180546129ed90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1990614d3d565b8015612a665780601f10612a3b57610100808354040283529160200191612a66565b820191906000526020600020905b815481529060010190602001808311612a4957829003601f168201915b50505050508152602001600882018054612a7f90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612aab90614d3d565b8015612af85780601f10612acd57610100808354040283529160200191612af8565b820191906000526020600020905b815481529060010190602001808311612adb57829003601f168201915b50505050508152602001600982018054612b1190614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90614d3d565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b50505050508152602001600a820154815250509050612bc781600001518260400151612bb586610cb5565b6040516020016113b393929190615849565b604051602001612bd79190615959565b604051602081830303815290604052915050919050565b6000818152600260205260408120546001600160a01b0316612c665760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6000828152600b602052604080822081516101608101909252805482908290612c8e90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612cba90614d3d565b8015612d075780601f10612cdc57610100808354040283529160200191612d07565b820191906000526020600020905b815481529060010190602001808311612cea57829003601f168201915b50505050508152602001600182018054612d2090614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612d4c90614d3d565b8015612d995780601f10612d6e57610100808354040283529160200191612d99565b820191906000526020600020905b815481529060010190602001808311612d7c57829003601f168201915b50505050508152602001600282018054612db290614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612dde90614d3d565b8015612e2b5780601f10612e0057610100808354040283529160200191612e2b565b820191906000526020600020905b815481529060010190602001808311612e0e57829003601f168201915b50505050508152602001600382015481526020016004820154815260200160058201548152602001600682018054612e6290614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8e90614d3d565b8015612edb5780601f10612eb057610100808354040283529160200191612edb565b820191906000526020600020905b815481529060010190602001808311612ebe57829003601f168201915b50505050508152602001600782018054612ef490614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2090614d3d565b8015612f6d5780601f10612f4257610100808354040283529160200191612f6d565b820191906000526020600020905b815481529060010190602001808311612f5057829003601f168201915b50505050508152602001600882018054612f8690614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612fb290614d3d565b8015612fff5780601f10612fd457610100808354040283529160200191612fff565b820191906000526020600020905b815481529060010190602001808311612fe257829003601f168201915b5050505050815260200160098201805461301890614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461304490614d3d565b80156130915780601f1061306657610100808354040283529160200191613091565b820191906000526020600020905b81548152906001019060200180831161307457829003601f168201915b50505050508152602001600a820154815250509050600062015180826101400151426130bd919061599e565b6130c79190614f3c565b6130d2906001615821565b949350505050565b6130e2613ed3565b6001600160a01b03811661315e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108aa565b6115b181613f2d565b6131c460405180610160016040528060608152602001606081526020016060815260200160008152602001600081526020016000815260200160608152602001606081526020016060815260200160608152602001600081525090565b6000828152600260205260409020546001600160a01b031661323c5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6000828152600b60205260408082208151610160810190925280548290829061326490614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461329090614d3d565b80156132dd5780601f106132b2576101008083540402835291602001916132dd565b820191906000526020600020905b8154815290600101906020018083116132c057829003601f168201915b505050505081526020016001820180546132f690614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461332290614d3d565b801561336f5780601f106133445761010080835404028352916020019161336f565b820191906000526020600020905b81548152906001019060200180831161335257829003601f168201915b5050505050815260200160028201805461338890614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546133b490614d3d565b80156134015780601f106133d657610100808354040283529160200191613401565b820191906000526020600020905b8154815290600101906020018083116133e457829003601f168201915b5050505050815260200160038201548152602001600482015481526020016005820154815260200160068201805461343890614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461346490614d3d565b80156134b15780601f10613486576101008083540402835291602001916134b1565b820191906000526020600020905b81548152906001019060200180831161349457829003601f168201915b505050505081526020016007820180546134ca90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546134f690614d3d565b80156135435780601f1061351857610100808354040283529160200191613543565b820191906000526020600020905b81548152906001019060200180831161352657829003601f168201915b5050505050815260200160088201805461355c90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461358890614d3d565b80156135d55780601f106135aa576101008083540402835291602001916135d5565b820191906000526020600020905b8154815290600101906020018083116135b857829003601f168201915b505050505081526020016009820180546135ee90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461361a90614d3d565b80156136675780601f1061363c57610100808354040283529160200191613667565b820191906000526020600020905b81548152906001019060200180831161364a57829003601f168201915b5050509183525050600a91909101546020909101529392505050565b6000818152600260205260409020546001600160a01b03166136fb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b61370481612217565b6137455760405162461bcd60e51b815260206004820152601260248201527154686174204672656e20697320646561642160701b60448201526064016108aa565b3361374f82611673565b6001600160a01b0316146137b15760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b600d543410156137c057600080fd5b6000818152600b6020526040902060048101546137de906003615821565b60049091015550565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061384a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061075b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461075b565b6000818152600260205260409020546001600160a01b03166115b15760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108aa565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061392882611673565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600061396e836140d8565b600101905060008167ffffffffffffffff81111561398e5761398e61498c565b6040519080825280601f01601f1916602001820160405280156139b8576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846139c257509392505050565b611cfb8282604051806020016040528060008152506141ba565b600080613a2783611673565b9050806001600160a01b0316846001600160a01b03161480613a6e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806130d25750836001600160a01b0316613a87846107f3565b6001600160a01b031614949350505050565b826001600160a01b0316613aac82611673565b6001600160a01b031614613b105760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108aa565b6001600160a01b038216613b8b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108aa565b613b988383836001614238565b826001600160a01b0316613bab82611673565b6001600160a01b031614613c0f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108aa565b6000818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b606060008212613ccb5760405180602001604052806000815250613d02565b6040518060400160405280600181526020017f2d000000000000000000000000000000000000000000000000000000000000008152505b613d0e61097b84614374565b604051602001613d1f9291906159b1565b6040516020818303038152906040529050919050565b60608151600003613d5457505060408051602081019091526000815290565b6000604051806060016040528060408152602001615b546040913990506000600384516002613d839190614d8d565b613d8d9190614f3c565b613d98906004614f0f565b90506000613da7826020614d8d565b67ffffffffffffffff811115613dbf57613dbf61498c565b6040519080825280601f01601f191660200182016040528015613de9576020820181803683370190505b509050818152600183018586518101602084015b81831015613e575760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401613dfd565b600389510660018114613e715760028114613e9d57613ec5565b7f3d3d000000000000000000000000000000000000000000000000000000000000600119830152613ec5565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b509398975050505050505050565b600a546001600160a01b03163314611a4b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108aa565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603613fed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108aa565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b614065848484613a99565b6140718484848461438b565b611cea5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108aa565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614121577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef8100000000831061414d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061416b57662386f26fc10000830492506010015b6305f5e1008310614183576305f5e100830492506008015b612710831061419757612710830492506004015b606483106141a9576064830492506002015b600a831061075b5760010192915050565b6141c483836144d7565b6141d1600084848461438b565b61094b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108aa565b60018111156142af5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016108aa565b816001600160a01b03851661430b5761430681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61432e565b836001600160a01b0316856001600160a01b03161461432e5761432e858261467d565b6001600160a01b03841661434a576143458161471a565b61436d565b846001600160a01b0316846001600160a01b03161461436d5761436d84826147c9565b5050505050565b600080821215614387578160000361075b565b5090565b60006001600160a01b0384163b156144cc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906143cf9033908990889088906004016159e0565b6020604051808303816000875af192505050801561440a575060408051601f3d908101601f1916820190925261440791810190615a12565b60015b6144b2573d808015614438576040519150601f19603f3d011682016040523d82523d6000602084013e61443d565b606091505b5080516000036144aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506130d2565b506001949350505050565b6001600160a01b03821661452d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108aa565b6000818152600260205260409020546001600160a01b0316156145925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108aa565b6145a0600083836001614238565b6000818152600260205260409020546001600160a01b0316156146055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108aa565b6001600160a01b0382166000818152600360209081526040808320805460010190558483526002909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161468a8461199f565b614694919061599e565b6000838152600760205260409020549091508082146146e7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061472c9060019061599e565b600083815260096020526040812054600880549394509092849081106147545761475461580b565b9060005260206000200154905080600883815481106147755761477561580b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806147ad576147ad615a2f565b6001900381819060005260206000200160009055905550505050565b60006147d48361199f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b0319811681146115b157600080fd5b60006020828403121561483557600080fd5b81356148408161480d565b9392505050565b60005b8381101561486257818101518382015260200161484a565b50506000910152565b60008151808452614883816020860160208601614847565b601f01601f19169290920160200192915050565b602081526000614840602083018461486b565b6000602082840312156148bc57600080fd5b5035919050565b80356001600160a01b03811681146148da57600080fd5b919050565b600080604083850312156148f257600080fd5b6148fb836148c3565b946020939093013593505050565b60008060006060848603121561491e57600080fd5b614927846148c3565b9250614935602085016148c3565b9150604084013590509250925092565b60008060006060848603121561495a57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561498357600080fd5b614840826148c3565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156149cb576149cb61498c565b604052919050565b600067ffffffffffffffff8211156149ed576149ed61498c565b50601f01601f191660200190565b6000614a0e614a09846149d3565b6149a2565b9050828152838383011115614a2257600080fd5b828260208301376000602084830101529392505050565b60008060408385031215614a4c57600080fd5b823567ffffffffffffffff811115614a6357600080fd5b8301601f81018513614a7457600080fd5b614a83858235602084016149fb565b95602094909401359450505050565b60008060408385031215614aa557600080fd5b614aae836148c3565b915060208301358015158114614ac357600080fd5b809150509250929050565b6000610160808352614ae28184018f61486b565b90508281036020840152614af6818e61486b565b90508281036040840152614b0a818d61486b565b90508a60608401528960808401528860a084015282810360c0840152614b30818961486b565b905082810360e0840152614b44818861486b565b9050828103610100840152614b59818761486b565b9050828103610120840152614b6e818661486b565b915050826101408301529c9b505050505050505050505050565b60008060008060808587031215614b9e57600080fd5b614ba7856148c3565b9350614bb5602086016148c3565b925060408501359150606085013567ffffffffffffffff811115614bd857600080fd5b8501601f81018713614be957600080fd5b614bf8878235602084016149fb565b91505092959194509250565b60008060408385031215614c1757600080fd5b614c20836148c3565b9150614c2e602084016148c3565b90509250929050565b6020815260008251610160806020850152614c5661018085018361486b565b91506020850151601f1980868503016040870152614c74848361486b565b93506040870151915080868503016060870152614c91848361486b565b935060608701516080870152608087015160a087015260a087015160c087015260c08701519150808685030160e0870152614ccc848361486b565b935060e08701519150610100818786030181880152614ceb858461486b565b945080880151925050610120818786030181880152614d0a858461486b565b945080880151925050610140818786030181880152614d29858461486b565b970151959092019490945250929392505050565b600181811c90821680614d5157607f821691505b602082108103614d7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561075b5761075b614d77565b60008151614db2818560208601614847565b9290920192915050565b7f4672656e73204f6e20436861696e202300000000000000000000000000000000815260008251614df4816010850160208701614847565b9190910160100192915050565b601f82111561094b57600081815260208120601f850160051c81016020861015614e285750805b601f850160051c820191505b81811015614e4757828155600101614e34565b505050505050565b815167ffffffffffffffff811115614e6957614e6961498c565b614e7d81614e778454614d3d565b84614e01565b602080601f831160018114614eb25760008415614e9a5750858301515b600019600386901b1c1916600185901b178555614e47565b600085815260208120601f198616915b82811015614ee157888601518255948401946001909101908401614ec2565b5085821015614eff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761075b5761075b614d77565b634e487b7160e01b600052601260045260246000fd5b600082614f4b57614f4b614f26565b500490565b600082614f5f57614f5f614f26565b500690565b8181036000831280158383131683831282161715614f8457614f84614d77565b5092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222077696474683d2235303022206865696768743d223535302260208201527f2076696577426f783d223020302032302032322220707265736572766541737060408201527f656374526174696f3d22784d6964594d696420736c696365223e3c7374796c6560608201527f3e2e7072656669785f5f736d616c6c7b666f6e743a2e37707820436f6d69632060808201527f53616e73204d537d3c2f7374796c653e3c646566733e3c6c696e65617247726160a08201527f6469656e742069643d227072656669785f5f6261636b67726f756e6431223e3c60c08201527f73746f702073746f702d636f6c6f723d2268736c2835302c203730252c20353060e08201527f2529222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e3c64656101008201527f66733e3c6c696e6561724772616469656e742069643d227072656669785f5f626101208201527f61636b67726f756e6432223e3c73746f702073746f702d636f6c6f723d226873610140820152610d8560f31b61016082015260006153756153266153206152a061529a6151ff6151f961515e6101628a018e614da0565b7f2c203330252c2035302529222f3e3c2f6c696e6561724772616469656e743e3c81527f2f646566733e3c646566733e3c6c696e6561724772616469656e742069643d2260208201527f7072656669785f5f6261636b67726f756e6433223e3c73746f702073746f702d60408201527f636f6c6f723d2268736c280000000000000000000000000000000000000000006060820152606b0190565b8b614da0565b7f2c203330252c2035302529222f3e3c2f6c696e6561724772616469656e743e3c81527f2f646566733e3c646566733e3c6c696e6561724772616469656e742069643d2260208201527f7072656669785f5f6261636b67726f756e6434223e3c73746f702073746f702d60408201527f636f6c6f723d2268736c283336302c203730252c200000000000000000000000606082015260750190565b88614da0565b7f2529222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e3c646581527f66733e3c6c696e6561724772616469656e742069643d227072656669785f5f6260208201527f61636b67726f756e6435223e3c73746f702073746f702d636f6c6f723d2268736040820152610d8560f31b606082015260620190565b85614da0565b7f2c203530252c2035302529222f3e3c2f6c696e6561724772616469656e743e3c81527f2f646566733e0000000000000000000000000000000000000000000000000000602082015260260190565b9695505050505050565b7f3c7465787420783d22312220793d22312e352220636c6173733d22707265666981526a785f5f736d616c6c223e2360a81b60208201526000602b820187516153cc818360208c01614847565b6154218183017f3c2f746578743e3c7465787420783d22312e312220793d22332220636c61737381527f3d227072656669785f5f736d616c6c223e000000000000000000000000000000602082015260310190565b9150508651615434818360208b01614847565b8082019150507f3c2f746578743e3c7465787420783d22312220793d2232312e332220636c617381527f733d227072656669785f5f736d616c6c223e48617070696e6573733a200000006020820152855161549681603d840160208a01614847565b7f3c2f746578743e3c7465787420783d22382220793d2232312e332220636c6173603d92909101918201527f733d227072656669785f5f736d616c6c223e456e657267793a20000000000000605d82015284516154fa816077840160208901614847565b7f3c2f746578743e3c7465787420783d2231342220793d2232312e332220636c61607792909101918201527f73733d227072656669785f5f736d616c6c223e436c65616e6c696e6573733a20609782015261558461555b60b7830186614da0565b7f3c2f746578743e3c2f7376673e000000000000000000000000000000000000008152600d0190565b98975050505050505050565b6000602082840312156155a257600080fd5b815167ffffffffffffffff8111156155b957600080fd5b8201601f810184136155ca57600080fd5b80516155d8614a09826149d3565b8181528560208385010111156155ed57600080fd5b610cac826020830160208601614847565b60008451615610818460208901614847565b845190830190615624818360208901614847565b8451910190615637818360208801614847565b0195945050505050565b7f3c7465787420783d22312220793d22312e352220636c6173733d22707265666981526a785f5f736d616c6c223e2360a81b60208201526000602b8201845161568e818360208901614847565b6156e38183017f3c2f746578743e3c7465787420783d22312e312220793d22332220636c61737381527f3d227072656669785f5f736d616c6c223e000000000000000000000000000000602082015260310190565b91505083516156f6818360208801614847565b7f3c2f746578743e3c7465787420783d22312220793d2232312e332220636c617391019081527f733d227072656669785f5f736d616c6c223e48617070696e6573733a202d2d2d60208201527f2d2d3c2f746578743e3c7465787420783d22382220793d2232312e332220636c60408201527f6173733d227072656669785f5f736d616c6c223e456e657267793a202d2d2d2d60608201527f2d3c2f746578743e3c7465787420783d2231342220793d2232312e332220636c60808201527f6173733d227072656669785f5f736d616c6c223e436c65616e6c696e6573733a60a08201527f202d2d2d2d2d3c2f746578743e3c2f7376673e0000000000000000000000000060c082015260d301949350505050565b634e487b7160e01b600052603260045260246000fd5b808201828112600083128015821682158216171561584157615841614d77565b505092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000815260008451615881816009850160208901614847565b7f222c20226465736372697074696f6e223a22000000000000000000000000000060099184019182015284516158be81601b840160208901614847565b7f222c2022696d616765223a202200000000000000000000000000000000000000601b92909101918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060288201528351615922816042840160208801614847565b7f227d0000000000000000000000000000000000000000000000000000000000006042929091019182015260440195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161599181601d850160208701614847565b91909101601d0192915050565b8181038181111561075b5761075b614d77565b600083516159c3818460208801614847565b8351908301906159d7818360208801614847565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152615375608083018461486b565b600060208284031215615a2457600080fd5b81516148408161480d565b634e487b7160e01b600052603160045260246000fdfe4672656e73204f6e20436861696e206172652031303025206f6e2d636861696e2067656e6572617465642c2064796e616d6963204e46547320616e6420796f7572206e6577206f6e2d636861696e206672656e732e2054616b652063617265206f6620796f7572206672656e2062792066656564696e672069742c20706c6179696e67207769746820697420616e6420636c65616e696e672069742c20796f7572206672656e2077696c6c2061707072656369617465207468617420616e642069747320617070656172616e63652077696c6c206368616e6765206163636f7264696e676c792c2072656d656d6265722c204672656e73204f6e20436861696e206c61737420666f7265766572214142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203ffaee4e16e76aed941d703bbb54e97922c21259886d32950cb3edfa531717fd64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102855760003560e01c8063715018a611610153578063b88d4fde116100cb578063ee2dc0011161007f578063f48f0d8d11610064578063f48f0d8d146106c7578063f59dfdfb146106f4578063fb22198b1461070757600080fd5b8063ee2dc00114610687578063f2fde38b146106a757600080fd5b8063d84b2361116100b0578063d84b2361146105fe578063e985e9c51461061e578063edf877041461066757600080fd5b8063b88d4fde146105be578063c87b56dd146105de57600080fd5b806395d89b4111610122578063a07b6a4211610107578063a07b6a4214610551578063a22cb46514610567578063b24767b71461058757600080fd5b806395d89b411461051c5780639b3830581461053157600080fd5b8063715018a6146104c05780637e7196e3146104d55780638baecc21146104eb5780638da5cb5b146104fe57600080fd5b80632ba80eba1161020157806356982b09116101b5578063674ef0fa1161019a578063674ef0fa1461047a5780636898f82b1461048d57806370a08231146104a057600080fd5b806356982b09146104445780636352211e1461045a57600080fd5b80633ccfd60b116101e65780633ccfd60b146103fc57806342842e0e146104045780634f6ccce71461042457600080fd5b80632ba80eba146103bc5780632f745c59146103dc57600080fd5b8063095ea7b31161025857806318160ddd1161023d57806318160ddd1461036757806323b872dd1461037c578063282946401461039c57600080fd5b8063095ea7b31461033d5780631249c58b1461035f57600080fd5b806301ffc9a71461028a57806303cf4d21146102bf57806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561029657600080fd5b506102aa6102a5366004614823565b61071d565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d5600e5481565b6040519081526020016102b6565b3480156102ef57600080fd5b506102f8610761565b6040516102b69190614897565b34801561031157600080fd5b506103256103203660046148aa565b6107f3565b6040516001600160a01b0390911681526020016102b6565b34801561034957600080fd5b5061035d6103583660046148df565b61081a565b005b61035d610950565b34801561037357600080fd5b506008546102d5565b34801561038857600080fd5b5061035d610397366004614909565b610b9c565b3480156103a857600080fd5b506102d56103b7366004614945565b610c13565b3480156103c857600080fd5b506102f86103d73660046148aa565b610cb5565b3480156103e857600080fd5b506102d56103f73660046148df565b611490565b61035d611538565b34801561041057600080fd5b5061035d61041f366004614909565b6115b4565b34801561043057600080fd5b506102d561043f3660046148aa565b6115cf565b34801561045057600080fd5b506102d560105481565b34801561046657600080fd5b506103256104753660046148aa565b611673565b61035d6104883660046148aa565b6116d8565b61035d61049b3660046148aa565b61183c565b3480156104ac57600080fd5b506102d56104bb366004614971565b61199f565b3480156104cc57600080fd5b5061035d611a39565b3480156104e157600080fd5b506102d5600c5481565b61035d6104f93660046148aa565b611a4d565b34801561050a57600080fd5b50600a546001600160a01b0316610325565b34801561052857600080fd5b506102f8611bc2565b34801561053d57600080fd5b5061035d61054c366004614a39565b611bd1565b34801561055d57600080fd5b506102d5600d5481565b34801561057357600080fd5b5061035d610582366004614a92565b611cf0565b34801561059357600080fd5b506105a76105a23660046148aa565b611cff565b6040516102b69b9a99989796959493929190614ace565b3480156105ca57600080fd5b5061035d6105d9366004614b88565b612109565b3480156105ea57600080fd5b506102f86105f93660046148aa565b612181565b34801561060a57600080fd5b506102aa6106193660046148aa565b612217565b34801561062a57600080fd5b506102aa610639366004614c04565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067357600080fd5b506102f86106823660046148aa565b612754565b34801561069357600080fd5b506102d56106a23660046148aa565b612bee565b3480156106b357600080fd5b5061035d6106c2366004614971565b6130da565b3480156106d357600080fd5b506106e76106e23660046148aa565b613167565b6040516102b69190614c37565b61035d6107023660046148aa565b613683565b34801561071357600080fd5b506102d5600f5481565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061075b575061075b826137e7565b92915050565b60606000805461077090614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90614d3d565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe82613882565b506000908152600460205260409020546001600160a01b031690565b600061082582611673565b9050806001600160a01b0316836001600160a01b0316036108b35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806108cf57506108cf8133610639565b6109415760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016108aa565b61094b83836138e6565b505050565b600061095b60085490565b9050600060405180610160016040528061098084600161097b9190614d8d565b613961565b6040516020016109909190614dbc565b604051602081830303815290604052815260200160405180602001604052806000815250815260200160405180610140016040528061010e8152602001615a4661010e913981526020016065815260200160658152602001606581526020016109ff61097b6101694487610c13565b8152602001610a1961097b610169426103b788601e614d8d565b8152602001610a2d61097b60654442610c13565b8152602001610a4761097b610169446103b788600a614d8d565b8152602001428152509050610a64600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a8b57600c54341015610a8b57600080fd5b80600b6000610a9b856001614d8d565b8152602081019190915260400160002081518190610ab99082614e4f565b5060208201516001820190610ace9082614e4f565b5060408201516002820190610ae39082614e4f565b50606082015160038201556080820151600482015560a0820151600582015560c08201516006820190610b169082614e4f565b5060e08201516007820190610b2b9082614e4f565b506101008201516008820190610b419082614e4f565b506101208201516009820190610b579082614e4f565b506101409190910151600a90910155610b7a33610b75846001614d8d565b613a01565b6064600c546065610b8b9190614f0f565b610b959190614f3c565b600c555050565b610ba63382613a1b565b610c085760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016108aa565b61094b838383613a99565b604080514260208083018290523360601b6bffffffffffffffffffffffff19168385018190526054840187905260748085018790528551808603909101815260948501865280519083012060b485019390935260d484015260e883018690526101088301859052610128808401839052845180850390910181526101489093019093528151919092012060009190610cac908690614f50565b95945050505050565b60606000600b600084815260200190815260200160002060405180610160016040529081600082018054610ce890614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1490614d3d565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b50505050508152602001600182018054610d7a90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610da690614d3d565b8015610df35780601f10610dc857610100808354040283529160200191610df3565b820191906000526020600020905b815481529060010190602001808311610dd657829003601f168201915b50505050508152602001600282018054610e0c90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3890614d3d565b8015610e855780601f10610e5a57610100808354040283529160200191610e85565b820191906000526020600020905b815481529060010190602001808311610e6857829003601f168201915b50505050508152602001600382015481526020016004820154815260200160058201548152602001600682018054610ebc90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee890614d3d565b8015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b50505050508152602001600782018054610f4e90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a90614d3d565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b50505050508152602001600882018054610fe090614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461100c90614d3d565b80156110595780601f1061102e57610100808354040283529160200191611059565b820191906000526020600020905b81548152906001019060200180831161103c57829003601f168201915b5050505050815260200160098201805461107290614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461109e90614d3d565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b50505050508152602001600a8201548152505090506060600061110d85612bee565b9050600083602001519050600082856080015161112a9190614f64565b90506000838660a0015161113e9190614f64565b905060008487606001516111529190614f64565b9050620186a08312611165576201869f92505b620186a08212611176576201869f91505b620186a0811261118657506201869f5b60008760c001518860e001518961010001518a61012001516040516020016111b19493929190614f8b565b604051602081830303815290604052905060006111cd8b613961565b866111d785613cac565b6111e088613cac565b6111e988613cac565b6040516020016111fd95949392919061537f565b60405160208183030381529060405290506112178b612217565b156113d7576046851215801561122e575060468412155b801561123b575060468312155b156112b8577366b87930130f38620501765b834846a8951b116c63bf09eab76040518163ffffffff1660e01b8152600401600060405180830381865af4158015611289573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112b19190810190615590565b9750611399565b602885121580156112ca575060288412155b80156112d7575060288312155b15611325577366b87930130f38620501765b834846a8951b116c63fb7d81636040518163ffffffff1660e01b8152600401600060405180830381865af4158015611289573d6000803e3d6000fd5b73d97e627d881cc88655872bcda853d0a1c20fc0da63b1824d896040518163ffffffff1660e01b8152600401600060405180830381865af415801561136e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113969190810190615590565b97505b60006113c7838a846040516020016113b3939291906155fe565b604051602081830303815290604052613d35565b9c9b505050505050505050505050565b73d97e627d881cc88655872bcda853d0a1c20fc0da63e8173e1b6040518163ffffffff1660e01b8152600401600060405180830381865af4158015611420573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114489190810190615590565b97506114538b613961565b86604051602001611465929190615641565b604051602081830303815290604052905060006113c7838a846040516020016113b3939291906155fe565b600061149b8361199f565b821061150f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108aa565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b611540613ed3565b6000611554600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461159e576040519150601f19603f3d011682016040523d82523d6000602084013e6115a3565b606091505b50509050806115b157600080fd5b50565b61094b83838360405180602001604052806000815250612109565b60006115da60085490565b821061164e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108aa565b600882815481106116615761166161580b565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061075b5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108aa565b6000818152600260205260409020546001600160a01b03166117505760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b61175981612217565b61179a5760405162461bcd60e51b815260206004820152601260248201527154686174204672656e20697320646561642160701b60448201526064016108aa565b336117a482611673565b6001600160a01b0316146118065760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b600e5434101561181557600080fd5b6000818152600b602052604090206005810154611833906003615821565b60059091015550565b6000818152600260205260409020546001600160a01b03166118b45760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6118bd81612217565b6118fe5760405162461bcd60e51b815260206004820152601260248201527154686174204672656e20697320646561642160701b60448201526064016108aa565b3361190882611673565b6001600160a01b03161461196a5760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b600f5434101561197957600080fd5b6000818152600b6020526040902060038082015461199691615821565b60039091015550565b60006001600160a01b038216611a1d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016108aa565b506001600160a01b031660009081526003602052604090205490565b611a41613ed3565b611a4b6000613f2d565b565b6000818152600260205260409020546001600160a01b0316611ac55760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b611ace81612217565b15611b1b5760405162461bcd60e51b815260206004820152601960248201527f54686174204672656e206973207374696c6c20616c697665210000000000000060448201526064016108aa565b33611b2582611673565b6001600160a01b031614611b875760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b601054341015611b9657600080fd5b6000908152600b6020526040902060656004820181905560058201819055600382015542600a90910155565b60606001805461077090614d3d565b33611bdb82611673565b6001600160a01b031614611c565760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420746865206f776e65722773206f6620746869732060448201527f6672656e0000000000000000000000000000000000000000000000000000000060648201526084016108aa565b600a82511115611cce5760405162461bcd60e51b815260206004820152602560248201527f4e616d652063616e2774206265206d6f7265207468616e20313020636861726160448201527f637465727300000000000000000000000000000000000000000000000000000060648201526084016108aa565b6000818152600b6020526040902060018101611cea8482614e4f565b50505050565b611cfb338383613f8c565b5050565b600b60205260009081526040902080548190611d1a90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4690614d3d565b8015611d935780601f10611d6857610100808354040283529160200191611d93565b820191906000526020600020905b815481529060010190602001808311611d7657829003601f168201915b505050505090806001018054611da890614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd490614d3d565b8015611e215780601f10611df657610100808354040283529160200191611e21565b820191906000526020600020905b815481529060010190602001808311611e0457829003601f168201915b505050505090806002018054611e3690614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6290614d3d565b8015611eaf5780601f10611e8457610100808354040283529160200191611eaf565b820191906000526020600020905b815481529060010190602001808311611e9257829003601f168201915b505050505090806003015490806004015490806005015490806006018054611ed690614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0290614d3d565b8015611f4f5780601f10611f2457610100808354040283529160200191611f4f565b820191906000526020600020905b815481529060010190602001808311611f3257829003601f168201915b505050505090806007018054611f6490614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9090614d3d565b8015611fdd5780601f10611fb257610100808354040283529160200191611fdd565b820191906000526020600020905b815481529060010190602001808311611fc057829003601f168201915b505050505090806008018054611ff290614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461201e90614d3d565b801561206b5780601f106120405761010080835404028352916020019161206b565b820191906000526020600020905b81548152906001019060200180831161204e57829003601f168201915b50505050509080600901805461208090614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546120ac90614d3d565b80156120f95780601f106120ce576101008083540402835291602001916120f9565b820191906000526020600020905b8154815290600101906020018083116120dc57829003601f168201915b50505050509080600a015490508b565b6121133383613a1b565b6121755760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b60648201526084016108aa565b611cea8484848461405a565b6000818152600260205260409020546060906001600160a01b031661220e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108aa565b61075b82612754565b6000818152600260205260408120546001600160a01b031661228f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6000828152600b6020526040808220815161016081019092528054829082906122b790614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546122e390614d3d565b80156123305780601f1061230557610100808354040283529160200191612330565b820191906000526020600020905b81548152906001019060200180831161231357829003601f168201915b5050505050815260200160018201805461234990614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461237590614d3d565b80156123c25780601f10612397576101008083540402835291602001916123c2565b820191906000526020600020905b8154815290600101906020018083116123a557829003601f168201915b505050505081526020016002820180546123db90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461240790614d3d565b80156124545780601f1061242957610100808354040283529160200191612454565b820191906000526020600020905b81548152906001019060200180831161243757829003601f168201915b5050505050815260200160038201548152602001600482015481526020016005820154815260200160068201805461248b90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546124b790614d3d565b80156125045780601f106124d957610100808354040283529160200191612504565b820191906000526020600020905b8154815290600101906020018083116124e757829003601f168201915b5050505050815260200160078201805461251d90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461254990614d3d565b80156125965780601f1061256b57610100808354040283529160200191612596565b820191906000526020600020905b81548152906001019060200180831161257957829003601f168201915b505050505081526020016008820180546125af90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546125db90614d3d565b80156126285780601f106125fd57610100808354040283529160200191612628565b820191906000526020600020905b81548152906001019060200180831161260b57829003601f168201915b5050505050815260200160098201805461264190614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461266d90614d3d565b80156126ba5780601f1061268f576101008083540402835291602001916126ba565b820191906000526020600020905b81548152906001019060200180831161269d57829003601f168201915b50505050508152602001600a82015481525050905060006126da84612bee565b905060008183608001516126ee9190614f64565b90506000828460a001516127029190614f64565b905060008385606001516127169190614f64565b9050600083131580612729575060008213155b80612735575060008113155b15612747575060009695505050505050565b5060019695505050505050565b60606000600b60008481526020019081526020016000206040518061016001604052908160008201805461278790614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546127b390614d3d565b80156128005780601f106127d557610100808354040283529160200191612800565b820191906000526020600020905b8154815290600101906020018083116127e357829003601f168201915b5050505050815260200160018201805461281990614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461284590614d3d565b80156128925780601f1061286757610100808354040283529160200191612892565b820191906000526020600020905b81548152906001019060200180831161287557829003601f168201915b505050505081526020016002820180546128ab90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546128d790614d3d565b80156129245780601f106128f957610100808354040283529160200191612924565b820191906000526020600020905b81548152906001019060200180831161290757829003601f168201915b5050505050815260200160038201548152602001600482015481526020016005820154815260200160068201805461295b90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461298790614d3d565b80156129d45780601f106129a9576101008083540402835291602001916129d4565b820191906000526020600020905b8154815290600101906020018083116129b757829003601f168201915b505050505081526020016007820180546129ed90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1990614d3d565b8015612a665780601f10612a3b57610100808354040283529160200191612a66565b820191906000526020600020905b815481529060010190602001808311612a4957829003601f168201915b50505050508152602001600882018054612a7f90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612aab90614d3d565b8015612af85780601f10612acd57610100808354040283529160200191612af8565b820191906000526020600020905b815481529060010190602001808311612adb57829003601f168201915b50505050508152602001600982018054612b1190614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90614d3d565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b50505050508152602001600a820154815250509050612bc781600001518260400151612bb586610cb5565b6040516020016113b393929190615849565b604051602001612bd79190615959565b604051602081830303815290604052915050919050565b6000818152600260205260408120546001600160a01b0316612c665760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6000828152600b602052604080822081516101608101909252805482908290612c8e90614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612cba90614d3d565b8015612d075780601f10612cdc57610100808354040283529160200191612d07565b820191906000526020600020905b815481529060010190602001808311612cea57829003601f168201915b50505050508152602001600182018054612d2090614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612d4c90614d3d565b8015612d995780601f10612d6e57610100808354040283529160200191612d99565b820191906000526020600020905b815481529060010190602001808311612d7c57829003601f168201915b50505050508152602001600282018054612db290614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612dde90614d3d565b8015612e2b5780601f10612e0057610100808354040283529160200191612e2b565b820191906000526020600020905b815481529060010190602001808311612e0e57829003601f168201915b50505050508152602001600382015481526020016004820154815260200160058201548152602001600682018054612e6290614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8e90614d3d565b8015612edb5780601f10612eb057610100808354040283529160200191612edb565b820191906000526020600020905b815481529060010190602001808311612ebe57829003601f168201915b50505050508152602001600782018054612ef490614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2090614d3d565b8015612f6d5780601f10612f4257610100808354040283529160200191612f6d565b820191906000526020600020905b815481529060010190602001808311612f5057829003601f168201915b50505050508152602001600882018054612f8690614d3d565b80601f0160208091040260200160405190810160405280929190818152602001828054612fb290614d3d565b8015612fff5780601f10612fd457610100808354040283529160200191612fff565b820191906000526020600020905b815481529060010190602001808311612fe257829003601f168201915b5050505050815260200160098201805461301890614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461304490614d3d565b80156130915780601f1061306657610100808354040283529160200191613091565b820191906000526020600020905b81548152906001019060200180831161307457829003601f168201915b50505050508152602001600a820154815250509050600062015180826101400151426130bd919061599e565b6130c79190614f3c565b6130d2906001615821565b949350505050565b6130e2613ed3565b6001600160a01b03811661315e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108aa565b6115b181613f2d565b6131c460405180610160016040528060608152602001606081526020016060815260200160008152602001600081526020016000815260200160608152602001606081526020016060815260200160608152602001600081525090565b6000828152600260205260409020546001600160a01b031661323c5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b6000828152600b60205260408082208151610160810190925280548290829061326490614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461329090614d3d565b80156132dd5780601f106132b2576101008083540402835291602001916132dd565b820191906000526020600020905b8154815290600101906020018083116132c057829003601f168201915b505050505081526020016001820180546132f690614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461332290614d3d565b801561336f5780601f106133445761010080835404028352916020019161336f565b820191906000526020600020905b81548152906001019060200180831161335257829003601f168201915b5050505050815260200160028201805461338890614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546133b490614d3d565b80156134015780601f106133d657610100808354040283529160200191613401565b820191906000526020600020905b8154815290600101906020018083116133e457829003601f168201915b5050505050815260200160038201548152602001600482015481526020016005820154815260200160068201805461343890614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461346490614d3d565b80156134b15780601f10613486576101008083540402835291602001916134b1565b820191906000526020600020905b81548152906001019060200180831161349457829003601f168201915b505050505081526020016007820180546134ca90614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546134f690614d3d565b80156135435780601f1061351857610100808354040283529160200191613543565b820191906000526020600020905b81548152906001019060200180831161352657829003601f168201915b5050505050815260200160088201805461355c90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461358890614d3d565b80156135d55780601f106135aa576101008083540402835291602001916135d5565b820191906000526020600020905b8154815290600101906020018083116135b857829003601f168201915b505050505081526020016009820180546135ee90614d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461361a90614d3d565b80156136675780601f1061363c57610100808354040283529160200191613667565b820191906000526020600020905b81548152906001019060200180831161364a57829003601f168201915b5050509183525050600a91909101546020909101529392505050565b6000818152600260205260409020546001600160a01b03166136fb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20517565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016108aa565b61370481612217565b6137455760405162461bcd60e51b815260206004820152601260248201527154686174204672656e20697320646561642160701b60448201526064016108aa565b3361374f82611673565b6001600160a01b0316146137b15760405162461bcd60e51b815260206004820152602360248201527f596f7520617265206e6f7420746865206f776e65722773206f662074686520466044820152623932b760e91b60648201526084016108aa565b600d543410156137c057600080fd5b6000818152600b6020526040902060048101546137de906003615821565b60049091015550565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061384a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061075b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461075b565b6000818152600260205260409020546001600160a01b03166115b15760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016108aa565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061392882611673565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600061396e836140d8565b600101905060008167ffffffffffffffff81111561398e5761398e61498c565b6040519080825280601f01601f1916602001820160405280156139b8576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846139c257509392505050565b611cfb8282604051806020016040528060008152506141ba565b600080613a2783611673565b9050806001600160a01b0316846001600160a01b03161480613a6e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806130d25750836001600160a01b0316613a87846107f3565b6001600160a01b031614949350505050565b826001600160a01b0316613aac82611673565b6001600160a01b031614613b105760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108aa565b6001600160a01b038216613b8b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108aa565b613b988383836001614238565b826001600160a01b0316613bab82611673565b6001600160a01b031614613c0f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108aa565b6000818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b606060008212613ccb5760405180602001604052806000815250613d02565b6040518060400160405280600181526020017f2d000000000000000000000000000000000000000000000000000000000000008152505b613d0e61097b84614374565b604051602001613d1f9291906159b1565b6040516020818303038152906040529050919050565b60608151600003613d5457505060408051602081019091526000815290565b6000604051806060016040528060408152602001615b546040913990506000600384516002613d839190614d8d565b613d8d9190614f3c565b613d98906004614f0f565b90506000613da7826020614d8d565b67ffffffffffffffff811115613dbf57613dbf61498c565b6040519080825280601f01601f191660200182016040528015613de9576020820181803683370190505b509050818152600183018586518101602084015b81831015613e575760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401613dfd565b600389510660018114613e715760028114613e9d57613ec5565b7f3d3d000000000000000000000000000000000000000000000000000000000000600119830152613ec5565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b509398975050505050505050565b600a546001600160a01b03163314611a4b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108aa565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603613fed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108aa565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b614065848484613a99565b6140718484848461438b565b611cea5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108aa565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614121577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef8100000000831061414d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061416b57662386f26fc10000830492506010015b6305f5e1008310614183576305f5e100830492506008015b612710831061419757612710830492506004015b606483106141a9576064830492506002015b600a831061075b5760010192915050565b6141c483836144d7565b6141d1600084848461438b565b61094b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108aa565b60018111156142af5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016108aa565b816001600160a01b03851661430b5761430681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61432e565b836001600160a01b0316856001600160a01b03161461432e5761432e858261467d565b6001600160a01b03841661434a576143458161471a565b61436d565b846001600160a01b0316846001600160a01b03161461436d5761436d84826147c9565b5050505050565b600080821215614387578160000361075b565b5090565b60006001600160a01b0384163b156144cc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906143cf9033908990889088906004016159e0565b6020604051808303816000875af192505050801561440a575060408051601f3d908101601f1916820190925261440791810190615a12565b60015b6144b2573d808015614438576040519150601f19603f3d011682016040523d82523d6000602084013e61443d565b606091505b5080516000036144aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506130d2565b506001949350505050565b6001600160a01b03821661452d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108aa565b6000818152600260205260409020546001600160a01b0316156145925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108aa565b6145a0600083836001614238565b6000818152600260205260409020546001600160a01b0316156146055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108aa565b6001600160a01b0382166000818152600360209081526040808320805460010190558483526002909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161468a8461199f565b614694919061599e565b6000838152600760205260409020549091508082146146e7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061472c9060019061599e565b600083815260096020526040812054600880549394509092849081106147545761475461580b565b9060005260206000200154905080600883815481106147755761477561580b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806147ad576147ad615a2f565b6001900381819060005260206000200160009055905550505050565b60006147d48361199f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b0319811681146115b157600080fd5b60006020828403121561483557600080fd5b81356148408161480d565b9392505050565b60005b8381101561486257818101518382015260200161484a565b50506000910152565b60008151808452614883816020860160208601614847565b601f01601f19169290920160200192915050565b602081526000614840602083018461486b565b6000602082840312156148bc57600080fd5b5035919050565b80356001600160a01b03811681146148da57600080fd5b919050565b600080604083850312156148f257600080fd5b6148fb836148c3565b946020939093013593505050565b60008060006060848603121561491e57600080fd5b614927846148c3565b9250614935602085016148c3565b9150604084013590509250925092565b60008060006060848603121561495a57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561498357600080fd5b614840826148c3565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156149cb576149cb61498c565b604052919050565b600067ffffffffffffffff8211156149ed576149ed61498c565b50601f01601f191660200190565b6000614a0e614a09846149d3565b6149a2565b9050828152838383011115614a2257600080fd5b828260208301376000602084830101529392505050565b60008060408385031215614a4c57600080fd5b823567ffffffffffffffff811115614a6357600080fd5b8301601f81018513614a7457600080fd5b614a83858235602084016149fb565b95602094909401359450505050565b60008060408385031215614aa557600080fd5b614aae836148c3565b915060208301358015158114614ac357600080fd5b809150509250929050565b6000610160808352614ae28184018f61486b565b90508281036020840152614af6818e61486b565b90508281036040840152614b0a818d61486b565b90508a60608401528960808401528860a084015282810360c0840152614b30818961486b565b905082810360e0840152614b44818861486b565b9050828103610100840152614b59818761486b565b9050828103610120840152614b6e818661486b565b915050826101408301529c9b505050505050505050505050565b60008060008060808587031215614b9e57600080fd5b614ba7856148c3565b9350614bb5602086016148c3565b925060408501359150606085013567ffffffffffffffff811115614bd857600080fd5b8501601f81018713614be957600080fd5b614bf8878235602084016149fb565b91505092959194509250565b60008060408385031215614c1757600080fd5b614c20836148c3565b9150614c2e602084016148c3565b90509250929050565b6020815260008251610160806020850152614c5661018085018361486b565b91506020850151601f1980868503016040870152614c74848361486b565b93506040870151915080868503016060870152614c91848361486b565b935060608701516080870152608087015160a087015260a087015160c087015260c08701519150808685030160e0870152614ccc848361486b565b935060e08701519150610100818786030181880152614ceb858461486b565b945080880151925050610120818786030181880152614d0a858461486b565b945080880151925050610140818786030181880152614d29858461486b565b970151959092019490945250929392505050565b600181811c90821680614d5157607f821691505b602082108103614d7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561075b5761075b614d77565b60008151614db2818560208601614847565b9290920192915050565b7f4672656e73204f6e20436861696e202300000000000000000000000000000000815260008251614df4816010850160208701614847565b9190910160100192915050565b601f82111561094b57600081815260208120601f850160051c81016020861015614e285750805b601f850160051c820191505b81811015614e4757828155600101614e34565b505050505050565b815167ffffffffffffffff811115614e6957614e6961498c565b614e7d81614e778454614d3d565b84614e01565b602080601f831160018114614eb25760008415614e9a5750858301515b600019600386901b1c1916600185901b178555614e47565b600085815260208120601f198616915b82811015614ee157888601518255948401946001909101908401614ec2565b5085821015614eff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761075b5761075b614d77565b634e487b7160e01b600052601260045260246000fd5b600082614f4b57614f4b614f26565b500490565b600082614f5f57614f5f614f26565b500690565b8181036000831280158383131683831282161715614f8457614f84614d77565b5092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222077696474683d2235303022206865696768743d223535302260208201527f2076696577426f783d223020302032302032322220707265736572766541737060408201527f656374526174696f3d22784d6964594d696420736c696365223e3c7374796c6560608201527f3e2e7072656669785f5f736d616c6c7b666f6e743a2e37707820436f6d69632060808201527f53616e73204d537d3c2f7374796c653e3c646566733e3c6c696e65617247726160a08201527f6469656e742069643d227072656669785f5f6261636b67726f756e6431223e3c60c08201527f73746f702073746f702d636f6c6f723d2268736c2835302c203730252c20353060e08201527f2529222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e3c64656101008201527f66733e3c6c696e6561724772616469656e742069643d227072656669785f5f626101208201527f61636b67726f756e6432223e3c73746f702073746f702d636f6c6f723d226873610140820152610d8560f31b61016082015260006153756153266153206152a061529a6151ff6151f961515e6101628a018e614da0565b7f2c203330252c2035302529222f3e3c2f6c696e6561724772616469656e743e3c81527f2f646566733e3c646566733e3c6c696e6561724772616469656e742069643d2260208201527f7072656669785f5f6261636b67726f756e6433223e3c73746f702073746f702d60408201527f636f6c6f723d2268736c280000000000000000000000000000000000000000006060820152606b0190565b8b614da0565b7f2c203330252c2035302529222f3e3c2f6c696e6561724772616469656e743e3c81527f2f646566733e3c646566733e3c6c696e6561724772616469656e742069643d2260208201527f7072656669785f5f6261636b67726f756e6434223e3c73746f702073746f702d60408201527f636f6c6f723d2268736c283336302c203730252c200000000000000000000000606082015260750190565b88614da0565b7f2529222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e3c646581527f66733e3c6c696e6561724772616469656e742069643d227072656669785f5f6260208201527f61636b67726f756e6435223e3c73746f702073746f702d636f6c6f723d2268736040820152610d8560f31b606082015260620190565b85614da0565b7f2c203530252c2035302529222f3e3c2f6c696e6561724772616469656e743e3c81527f2f646566733e0000000000000000000000000000000000000000000000000000602082015260260190565b9695505050505050565b7f3c7465787420783d22312220793d22312e352220636c6173733d22707265666981526a785f5f736d616c6c223e2360a81b60208201526000602b820187516153cc818360208c01614847565b6154218183017f3c2f746578743e3c7465787420783d22312e312220793d22332220636c61737381527f3d227072656669785f5f736d616c6c223e000000000000000000000000000000602082015260310190565b9150508651615434818360208b01614847565b8082019150507f3c2f746578743e3c7465787420783d22312220793d2232312e332220636c617381527f733d227072656669785f5f736d616c6c223e48617070696e6573733a200000006020820152855161549681603d840160208a01614847565b7f3c2f746578743e3c7465787420783d22382220793d2232312e332220636c6173603d92909101918201527f733d227072656669785f5f736d616c6c223e456e657267793a20000000000000605d82015284516154fa816077840160208901614847565b7f3c2f746578743e3c7465787420783d2231342220793d2232312e332220636c61607792909101918201527f73733d227072656669785f5f736d616c6c223e436c65616e6c696e6573733a20609782015261558461555b60b7830186614da0565b7f3c2f746578743e3c2f7376673e000000000000000000000000000000000000008152600d0190565b98975050505050505050565b6000602082840312156155a257600080fd5b815167ffffffffffffffff8111156155b957600080fd5b8201601f810184136155ca57600080fd5b80516155d8614a09826149d3565b8181528560208385010111156155ed57600080fd5b610cac826020830160208601614847565b60008451615610818460208901614847565b845190830190615624818360208901614847565b8451910190615637818360208801614847565b0195945050505050565b7f3c7465787420783d22312220793d22312e352220636c6173733d22707265666981526a785f5f736d616c6c223e2360a81b60208201526000602b8201845161568e818360208901614847565b6156e38183017f3c2f746578743e3c7465787420783d22312e312220793d22332220636c61737381527f3d227072656669785f5f736d616c6c223e000000000000000000000000000000602082015260310190565b91505083516156f6818360208801614847565b7f3c2f746578743e3c7465787420783d22312220793d2232312e332220636c617391019081527f733d227072656669785f5f736d616c6c223e48617070696e6573733a202d2d2d60208201527f2d2d3c2f746578743e3c7465787420783d22382220793d2232312e332220636c60408201527f6173733d227072656669785f5f736d616c6c223e456e657267793a202d2d2d2d60608201527f2d3c2f746578743e3c7465787420783d2231342220793d2232312e332220636c60808201527f6173733d227072656669785f5f736d616c6c223e436c65616e6c696e6573733a60a08201527f202d2d2d2d2d3c2f746578743e3c2f7376673e0000000000000000000000000060c082015260d301949350505050565b634e487b7160e01b600052603260045260246000fd5b808201828112600083128015821682158216171561584157615841614d77565b505092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000815260008451615881816009850160208901614847565b7f222c20226465736372697074696f6e223a22000000000000000000000000000060099184019182015284516158be81601b840160208901614847565b7f222c2022696d616765223a202200000000000000000000000000000000000000601b92909101918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060288201528351615922816042840160208801614847565b7f227d0000000000000000000000000000000000000000000000000000000000006042929091019182015260440195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161599181601d850160208701614847565b91909101601d0192915050565b8181038181111561075b5761075b614d77565b600083516159c3818460208801614847565b8351908301906159d7818360208801614847565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152615375608083018461486b565b600060208284031215615a2457600080fd5b81516148408161480d565b634e487b7160e01b600052603160045260246000fdfe4672656e73204f6e20436861696e206172652031303025206f6e2d636861696e2067656e6572617465642c2064796e616d6963204e46547320616e6420796f7572206e6577206f6e2d636861696e206672656e732e2054616b652063617265206f6620796f7572206672656e2062792066656564696e672069742c20706c6179696e67207769746820697420616e6420636c65616e696e672069742c20796f7572206672656e2077696c6c2061707072656369617465207468617420616e642069747320617070656172616e63652077696c6c206368616e6765206163636f7264696e676c792c2072656d656d6265722c204672656e73204f6e20436861696e206c61737420666f7265766572214142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203ffaee4e16e76aed941d703bbb54e97922c21259886d32950cb3edfa531717fd64736f6c63430008130033

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.