ETH Price: $3,465.47 (+2.10%)
Gas: 10 Gwei

Token

ZeGarden (FLOWER)
 

Overview

Max Total Supply

344 FLOWER

Holders

145

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
goldstellar.eth
Balance
0 FLOWER
0x3509ec5a32a6e7f6cc9f43e52443fce878ddb4cb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZeGarden

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

//  ███████ ███████  ██████   █████  ██████  ██████  ███████ ███    ██
//     ███  ██      ██       ██   ██ ██   ██ ██   ██ ██      ████   ██
//    ███   █████   ██   ███ ███████ ██████  ██   ██ █████   ██ ██  ██
//   ███    ██      ██    ██ ██   ██ ██   ██ ██   ██ ██      ██  ██ ██
//  ███████ ███████  ██████  ██   ██ ██   ██ ██████  ███████ ██   ████
//  🥯 bagelface
//  🐦 @bagelface_
//  🎮 bagelface#2027
//  📬 [email protected]

contract ZeGarden is ERC721, Ownable, VRFConsumerBase, PaymentSplitter {
  using Address for address;

  uint256 internal LINK_FEE;
  bytes32 internal LINK_KEY_HASH;
  address[] internal _payees;
  uint256 internal _tokenIds;
  uint256 internal _reserved;
  uint256 internal _tokenOffset;
  string internal _baseTokenURI;

  uint256 public PRESALE_MAX_MINT = 3;
  uint256 public PRESALE_MINT_PRICE = 0.042069 ether;
  uint256 public MAX_MINT = 10;
  uint256 public MINT_PRICE = 0.066 ether;
  uint256 public MAX_SUPPLY = 7777;
  uint256 public MAX_RESERVED = 77;
  string public PROVENANCE_HASH; // Keccak-256

  string public contractURI;
  string public flowersURI;
  bool public presaleActive;
  bool public saleActive;
  bool public revealed;
  mapping(address => bool) public whitelist;

  constructor(
    string memory baseTokenURI,
    address vrfCoordinator,
    address linkToken,
    bytes32 keyHash,
    uint256 linkFee,
    address[] memory payees,
    uint256[] memory shares
  )
    ERC721("ZeGarden", "FLOWER")
    PaymentSplitter(payees, shares)
    VRFConsumerBase(vrfCoordinator, linkToken)
  {
    LINK_KEY_HASH = keyHash;
    LINK_FEE = linkFee;
    _baseTokenURI = baseTokenURI;
    _payees = payees;
  }

  function totalSupply() external view returns (uint256) {
    return _tokenIds;
  }

  function tokenOffset() public view returns (uint256) {
    require(_tokenOffset != 0, "Offset has not been generated");

    return _tokenOffset;
  }

  function flowerId(uint256 tokenId) public view returns (uint256) {
    require(_exists(tokenId), "Query for nonexistent token");

    return (tokenId + tokenOffset()) % MAX_SUPPLY;
  }

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

  function setProvenanceHash(string memory provenanceHash) public onlyOwner {
    require(bytes(PROVENANCE_HASH).length == 0, "Provenance hash has already been set");

    PROVENANCE_HASH = provenanceHash;
  }

  function setBaseTokenURI(string memory URI) public onlyOwner {
    _baseTokenURI = URI;
  }

  function setContractURI(string memory URI) public onlyOwner {
    contractURI = URI;
  }

  function setFlowersURI(string memory URI) public onlyOwner {
    flowersURI = URI;
  }

  function flipPresaleActive() public onlyOwner {
    presaleActive = !presaleActive;
  }

  function flipSaleActive() public onlyOwner {
    saleActive = !saleActive;
  }

  function flipRevealed() public onlyOwner {
    require(_tokenOffset != 0, "Offset has not been generated");

    revealed = !revealed;
  }

  function setTokenOffset() public onlyOwner {
    require(_tokenOffset == 0,                  "Offset is already set");
    require(bytes(PROVENANCE_HASH).length != 0, "Provenance hash has not been set");

    requestRandomness(LINK_KEY_HASH, LINK_FEE);
  }

  function setWhitelist(address[] calldata gardeners, bool allow) public onlyOwner {
    for (uint256 i = 0; i < gardeners.length; i++) {
      whitelist[gardeners[i]] = allow;
    }
  }

  function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
    _tokenOffset = randomness % MAX_SUPPLY;
  }

  function reserve(uint256 amount, address to) public onlyOwner {
    require(_reserved + amount < MAX_RESERVED, "Exceeds maximum number of reserved tokens");

    _mintAmount(amount, to);
    _reserved += amount;
  }

  function presaleMint(uint256 amount) public payable {
    require(presaleActive,                                      "Presale is not active");
    require(whitelist[msg.sender],                              "Address not whitelisted");
    require(msg.value == PRESALE_MINT_PRICE * amount,           "Invalid Ether amount sent");
    require(balanceOf(msg.sender) + amount <= PRESALE_MAX_MINT, "Exceeds remaining whitelist balance");

    _mintAmount(amount, msg.sender);
  }

  function mint(uint256 amount) public payable {
    require(saleActive,                       "Sale is not active");
    require(amount <= MAX_MINT,               "Exceeds the maximum amount to mint at once");
    require(msg.value == MINT_PRICE * amount, "Invalid Ether amount sent");

    _mintAmount(amount, msg.sender);
  }

  function _mintAmount(uint256 amount, address to) internal {
    require(_tokenIds + amount < MAX_SUPPLY, "Exceeds maximum number of tokens");

    for (uint256 i = 0; i < amount; i++) {
      _safeMint(to, _tokenIds);
      _tokenIds += 1;
    }
  }

  function withdrawLINK(address to, uint256 amount) external onlyOwner {
    require(LINK.balanceOf(address(this)) >= amount, "Insufficient LINK balance");
    LINK.transfer(to, amount);
  }

  function withdrawAll() external onlyOwner {
    for (uint256 i = 0; i < _payees.length; i++) {
      release(payable(_payees[i]));
    }
  }
}

/*
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐🍐🍐🍐⚫🍐⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐🍐⚫⚫🌼🌼🌕🌚🍐⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🌳🍐🍐🍐🍐🍐⚪⚪⚪⚪⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪🍐🍐⚫🌼🌼🌼🌕🌼🌼💭🌳⚪⚪⚪⚪⚪🌳🍐🍐🍐🍐🍐⚫🍐⚫🍐⚫⚫🍐⚪⚪⚪⚪⚪⚪
  ⚪⚪⚪⚪⚪🍐🍐🍐🌚⚫🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪🍐🍐🍐⚫⚫⚫🌚🌼⚫⚫🌕🌼🌕🌕🌕⚫🍐⚪⚪⚪⚪⚪
  ⚪⚪⚪⚪🍐🍐🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌚🍐⚪⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌚🌳⚪⚪⚪⚪⚪
  ⚪⚪⚪🍐⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐🌳⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🍐⚪⚪⚪⚪
  ⚪⚪⚪🍐⚫⚫🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🍐⚪⚪⚪⚪
  ⚪⚪⚪🍐🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪⚪⚪
  ⚪⚪⚪⚪🍐🍐⚫⚫🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌚⚫🍐⚪⚪⚪
  ⚪⚪⚪⚪⚪🍐⚫⚫⚫🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌚🍐🍐🍐⚪⚪⚪⚪
  ⚪⚪⚪⚪🌳🍐🍐⚫⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌚🌼⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🍐🍐⚪⚪⚪⚪⚪⚪
  ⚪⚪⚪⚪🍐⚫🍐🍐🌳🌳⚫🌼🌼🌼🌼🌼⚫🌸🌸🌸🌸🐷🌼🌼🌼🌼🌼🌼🌼🌼⚫🍐⚫🍐⚪⚪⚪⚪⚪⚪⚪⚪
  ⚪⚪⚪🍐⚫🌼🌕🌼🌼⚫⚫⚫⚫🌼🌚⚫🌸🌸🌸🌸🌸🌸🐷🐷🌼🌼🌼🌼🌚⚫🍐🍐⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪
  ⚪⚪⚪⚫⚫🌼🌼🌼🌕🌕🌼⚫🌚⚫⚫🌸🌸🌸🌸🌸🌸🌚🌸🌸🌸🌼🌼⚫🍐🍐🌳🌳🌳⚪⚪⚪⚪⚪⚪⚪⚪⚪
  ⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🍓🍓🌸🌸🌸🌸🌸🌼🌚🌸🌸⚫⚫🍐🍐🍐🍐🍐⚫⚫🍐🍐🌳⚪⚪⚪⚪⚪
  ⚪⚪🍐⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🍓🍓🍓🌸🌸⚫🌸⚫🌚🌸🌸⚫🌼🌚🌼⚫🌼🌼🌕🌼🌼⚫🍐🍐⚪⚪⚪⚪
  ⚪⚪🍐⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🍓🍓🍓🍓🍓🌸🌸🌸🌸🌸🌸⚫🌼🌼🌼🌼🌼🌼🌼🌕🌼🌼⚫🍐⚪⚪⚪⚪
  ⚪⚪🌳⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🍓🍓🍓🍓🍓🌸🌸⚫🌼🌸🌸⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕🌚🍐⚪⚪⚪⚪
  ⚪⚪⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌚🍓🍓🍓🍓⚫⚫⚫⚫🌼🌸🌸🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕🌚🍐⚪⚪⚪⚪
  ⚪⚪⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌚🍓🍓🍓🍓🍓⚫⚫⚫🌚🌸🍓🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪⚪⚪
  ⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼⚫⚫⚫🌚🍓🍓🍓🍓⚫⚫⚫🌚🌸🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪⚪⚪
  ⚪🍐⚫⚫🌚🌼⚫⚫🌳🍐🍐🌳🌚🌼🌼🌚🍓🍓🍓🍓🍓🍓🍓🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪⚪⚪
  ⚪🍐⚫⚫🌳🍐🍐⚫🍐🍐🌼🌼🌼🌼🌼🌼⚫🌚🍓🍓🍓🌚🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌳⚪⚪⚪⚪
  ⚪⚪🍐🌚🍐🍐🍐⚫🌚⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪⚪⚪
  ⚪⚪⚪⚪⚪🍐⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪⚪⚪
  ⚪⚪⚪⚪⚪⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🌳⚪⚪⚪
  ⚪⚪⚪⚪🍐⚫🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪⚪⚪
  ⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪⚪⚪
  ⚪⚪⚪⚪🍐🍐⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪⚪⚪
  ⚪⚪⚪⚪⚪🍐⚫⚫⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌳🍐⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪🌳🍐🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌚🍐⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕🌼🍐⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪🍐🍐⚫⚫⚫🌼🌼🌼🌼🌼⚫🍐⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫⚫⚫🌼🌼🌕⚫⚪⚪🌳🌳⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐🍐🌳⚫⚫🌼🌼🌼⚫⚪⚪⚪🌳⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫⚫⚫🍐⚪⚪⚪🍐⚫⚫🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫🍐⚪⚪⚪⚪⚪⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐🌳🍐🍐⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼💭⚫⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫⚪⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌕⚫🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌚🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🌳⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌚🌼🌼🌼🌼🌼🌼🌼🌼🌼🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼⚫⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌼⚫🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼⚫🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼⚫🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🌚🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚫⚫⚫🌼🌼🌼🌼🌼🌼🌼🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼🌼🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫🌼🌼🌼🌼🌼🌼🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🌳⚫⚫🌼🌼🌼🌼🌼🌼🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼🌼⚫⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫🌼🌼🌼🌼🌼⚫⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌼🌼🌼🌼🌼⚫⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫🌚🌼🌼⚫🌼⚫⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫⚫⚫⚫⚫⚫⚫🍐⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🌳⚫⚫⚫⚫⚫⚫🌳⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪🍐⚫🍐🍐🍐🍐🍐⚪⚪
  ⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪
*/

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

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    internal
    virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 constant private USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(
    bytes32 _keyHash,
    uint256 _fee
  )
    internal
    returns (
      bytes32 requestId
    )
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(
    address _vrfCoordinator,
    address _link
  ) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    external
  {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

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

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  )
    internal
    pure
    returns (
      uint256
    )
  {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash,
    uint256 _vRFInputSeed
  )
    internal
    pure
    returns (
      bytes32
    )
  {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

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

interface LinkTokenInterface {

  function allowance(
    address owner,
    address spender
  )
    external
    view
    returns (
      uint256 remaining
    );

  function approve(
    address spender,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function balanceOf(
    address owner
  )
    external
    view
    returns (
      uint256 balance
    );

  function decimals()
    external
    view
    returns (
      uint8 decimalPlaces
    );

  function decreaseApproval(
    address spender,
    uint256 addedValue
  )
    external
    returns (
      bool success
    );

  function increaseApproval(
    address spender,
    uint256 subtractedValue
  ) external;

  function name()
    external
    view
    returns (
      string memory tokenName
    );

  function symbol()
    external
    view
    returns (
      string memory tokenSymbol
    );

  function totalSupply()
    external
    view
    returns (
      uint256 totalTokensIssued
    );

  function transfer(
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  )
    external
    returns (
      bool success
    );

  function transferFrom(
    address from,
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

}

File 5 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 16 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 7 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 8 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 16 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 13 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"address","name":"vrfCoordinator","type":"address"},{"internalType":"address","name":"linkToken","type":"address"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"},{"internalType":"uint256","name":"linkFee","type":"uint256"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"flowerId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flowersURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"URI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setFlowersURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTokenOffset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"gardeners","type":"address[]"},{"internalType":"bool","name":"allow","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tokenOffset","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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawLINK","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600360145566957588590e5000601555600a60165566ea7aa67b2d0000601755611e61601855604d6019553480156200003c57600080fd5b5060405162006a7338038062006a7383398181016040528101906200006291906200096d565b818187876040518060400160405280600881526020017f5a6547617264656e0000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f464c4f57455200000000000000000000000000000000000000000000000000008152508160009080519060200190620000ea92919062000633565b5080600190805190602001906200010392919062000633565b505050620001266200011a6200032b60201b60201c565b6200033360201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050508051825114620001dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d49062000c92565b60405180910390fd5b600082511162000224576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021b9062000cd6565b60405180910390fd5b60005b8251811015620002db57620002c58382815181106200026f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151838381518110620002b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151620003f960201b60201c565b8080620002d29062000f01565b91505062000227565b50505083600e8190555082600d8190555086601390805190602001906200030492919062000633565b5081600f90805190602001906200031d929190620006c4565b50505050505050506200102a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200046c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004639062000c70565b60405180910390fd5b60008111620004b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a99062000cf8565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052e9062000cb4565b60405180910390fd5b600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600854620005ee919062000df0565b6008819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200062792919062000c43565b60405180910390a15050565b828054620006419062000ecb565b90600052602060002090601f016020900481019282620006655760008555620006b1565b82601f106200068057805160ff1916838001178555620006b1565b82800160010185558215620006b1579182015b82811115620006b057825182559160200191906001019062000693565b5b509050620006c0919062000753565b5090565b82805482825590600052602060002090810192821562000740579160200282015b828111156200073f5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620006e5565b5b5090506200074f919062000753565b5090565b5b808211156200076e57600081600090555060010162000754565b5090565b600062000789620007838462000d4e565b62000d1a565b90508083825260208201905082856020860282011115620007a957600080fd5b60005b85811015620007dd5781620007c28882620008a1565b845260208401935060208301925050600181019050620007ac565b5050509392505050565b6000620007fe620007f88462000d7d565b62000d1a565b905080838252602082019050828560208602820111156200081e57600080fd5b60005b8581101562000852578162000837888262000956565b84526020840193506020830192505060018101905062000821565b5050509392505050565b6000620008736200086d8462000dac565b62000d1a565b9050828152602081018484840111156200088c57600080fd5b6200089984828562000e95565b509392505050565b600081519050620008b28162000fdc565b92915050565b600082601f830112620008ca57600080fd5b8151620008dc84826020860162000772565b91505092915050565b600082601f830112620008f757600080fd5b815162000909848260208601620007e7565b91505092915050565b600081519050620009238162000ff6565b92915050565b600082601f8301126200093b57600080fd5b81516200094d8482602086016200085c565b91505092915050565b600081519050620009678162001010565b92915050565b600080600080600080600060e0888a0312156200098957600080fd5b600088015167ffffffffffffffff811115620009a457600080fd5b620009b28a828b0162000929565b9750506020620009c58a828b01620008a1565b9650506040620009d88a828b01620008a1565b9550506060620009eb8a828b0162000912565b9450506080620009fe8a828b0162000956565b93505060a088015167ffffffffffffffff81111562000a1c57600080fd5b62000a2a8a828b01620008b8565b92505060c088015167ffffffffffffffff81111562000a4857600080fd5b62000a568a828b01620008e5565b91505092959891949750929550565b62000a708162000e4d565b82525050565b600062000a85602c8362000ddf565b91507f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008301527f7a65726f206164647265737300000000000000000000000000000000000000006020830152604082019050919050565b600062000aed60328362000ddf565b91507f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008301527f6573206c656e677468206d69736d6174636800000000000000000000000000006020830152604082019050919050565b600062000b55602b8362000ddf565b91507f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008301527f20686173207368617265730000000000000000000000000000000000000000006020830152604082019050919050565b600062000bbd601a8362000ddf565b91507f5061796d656e7453706c69747465723a206e6f207061796565730000000000006000830152602082019050919050565b600062000bff601d8362000ddf565b91507f5061796d656e7453706c69747465723a207368617265732061726520300000006000830152602082019050919050565b62000c3d8162000e8b565b82525050565b600060408201905062000c5a600083018562000a65565b62000c69602083018462000c32565b9392505050565b6000602082019050818103600083015262000c8b8162000a76565b9050919050565b6000602082019050818103600083015262000cad8162000ade565b9050919050565b6000602082019050818103600083015262000ccf8162000b46565b9050919050565b6000602082019050818103600083015262000cf18162000bae565b9050919050565b6000602082019050818103600083015262000d138162000bf0565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171562000d445762000d4362000fad565b5b8060405250919050565b600067ffffffffffffffff82111562000d6c5762000d6b62000fad565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000d9b5762000d9a62000fad565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000dca5762000dc962000fad565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b600062000dfd8262000e8b565b915062000e0a8362000e8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e425762000e4162000f4f565b5b828201905092915050565b600062000e5a8262000e6b565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000eb557808201518184015260208101905062000e98565b8381111562000ec5576000848401525b50505050565b6000600282049050600182168062000ee457607f821691505b6020821081141562000efb5762000efa62000f7e565b5b50919050565b600062000f0e8262000e8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000f445762000f4362000f4f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000fe78162000e4d565b811462000ff357600080fd5b50565b620010018162000e61565b81146200100d57600080fd5b50565b6200101b8162000e8b565b81146200102757600080fd5b50565b60805160601c60a05160601c615a086200106b60003960008181611e6b0152612e1f015260008181612016015281816121000152612de30152615a086000f3fe60806040526004361061031e5760003560e01c8063715018a6116101ab578063a7f7bab7116100f7578063de8b51e111610095578063e985e9c51161006f578063e985e9c514610ba7578063f0292a0314610be4578063f2fde38b14610c0f578063ff1b655614610c3857610365565b8063de8b51e114610b3a578063e33b7de314610b51578063e8a3d48514610b7c57610365565b8063c87b56dd116100d1578063c87b56dd14610a79578063c9b298f114610ab6578063ce7c2ac214610ad2578063dc8c57b414610b0f57610365565b8063a7f7bab7146109fc578063b88d4fde14610a25578063c002d23d14610a4e57610365565b806394985ddd116101645780639852595c1161013e5780639852595c1461093d5780639b19251a1461097a578063a0712d68146109b7578063a22cb465146109d357610365565b806394985ddd146108c057806395d89b41146108e9578063983fbab21461091457610365565b8063715018a6146107ea5780637731104914610801578063853828b6146108185780638b83209b1461082f5780638da5cb5b1461086c578063938e3d7b1461089757610365565b806332cb6b0c1161026a57806351830227116102235780636352211e116101fd5780636352211e1461071a57806368428a1b146107575780636ba90c6e1461078257806370a08231146107ad57610365565b8063518302271461069957806353135ca0146106c4578063549527c3146106ef57610365565b806332cb6b0c146105af5780633a98ef39146105da5780633b2c3fb6146106055780633c271a051461061c57806342842e0e14610645578063505ad5081461066e57610365565b806310969523116102d757806323b872dd116102b157806323b872dd146104f5578063269f08d71461051e5780632a234e571461055b57806330176e131461058657610365565b8063109695231461047857806318160ddd146104a157806319165587146104cc57610365565b806301ffc9a71461036a57806303339bcb146103a757806306fdde03146103d0578063081812fc146103fb578063095ea7b3146104385780630f1876a21461046157610365565b36610365577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061034c610c63565b3460405161035b929190614f32565b60405180910390a1005b600080fd5b34801561037657600080fd5b50610391600480360381019061038c9190614054565b610c6b565b60405161039e9190614f99565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190614139565b610d4d565b005b3480156103dc57600080fd5b506103e5610e41565b6040516103f29190615022565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d91906140e7565b610ed3565b60405161042f9190614ea2565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613f5b565b610f58565b005b34801561046d57600080fd5b50610476611070565b005b34801561048457600080fd5b5061049f600480360381019061049a91906140a6565b611194565b005b3480156104ad57600080fd5b506104b661127b565b6040516104c391906154a4565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613df0565b611285565b005b34801561050157600080fd5b5061051c60048036038101906105179190613e55565b6114ed565b005b34801561052a57600080fd5b50610545600480360381019061054091906140e7565b61154d565b60405161055291906154a4565b60405180910390f35b34801561056757600080fd5b506105706115be565b60405161057d91906154a4565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a891906140a6565b6115c4565b005b3480156105bb57600080fd5b506105c461165a565b6040516105d191906154a4565b60405180910390f35b3480156105e657600080fd5b506105ef611660565b6040516105fc91906154a4565b60405180910390f35b34801561061157600080fd5b5061061a61166a565b005b34801561062857600080fd5b50610643600480360381019061063e9190613f97565b611758565b005b34801561065157600080fd5b5061066c60048036038101906106679190613e55565b61189f565b005b34801561067a57600080fd5b506106836118bf565b6040516106909190615022565b60405180910390f35b3480156106a557600080fd5b506106ae61194d565b6040516106bb9190614f99565b60405180910390f35b3480156106d057600080fd5b506106d9611960565b6040516106e69190614f99565b60405180910390f35b3480156106fb57600080fd5b50610704611973565b60405161071191906154a4565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c91906140e7565b611979565b60405161074e9190614ea2565b60405180910390f35b34801561076357600080fd5b5061076c611a2b565b6040516107799190614f99565b60405180910390f35b34801561078e57600080fd5b50610797611a3e565b6040516107a491906154a4565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613dc7565b611a44565b6040516107e191906154a4565b60405180910390f35b3480156107f657600080fd5b506107ff611afc565b005b34801561080d57600080fd5b50610816611b84565b005b34801561082457600080fd5b5061082d611c2c565b005b34801561083b57600080fd5b50610856600480360381019061085191906140e7565b611d3b565b6040516108639190614ea2565b60405180910390f35b34801561087857600080fd5b50610881611da9565b60405161088e9190614ea2565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b991906140a6565b611dd3565b005b3480156108cc57600080fd5b506108e760048036038101906108e29190614018565b611e69565b005b3480156108f557600080fd5b506108fe611f05565b60405161090b9190615022565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613f5b565b611f97565b005b34801561094957600080fd5b50610964600480360381019061095f9190613dc7565b6121b0565b60405161097191906154a4565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190613dc7565b6121f9565b6040516109ae9190614f99565b60405180910390f35b6109d160048036038101906109cc91906140e7565b612219565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613f1f565b612309565b005b348015610a0857600080fd5b50610a236004803603810190610a1e91906140a6565b61248a565b005b348015610a3157600080fd5b50610a4c6004803603810190610a479190613ea4565b612520565b005b348015610a5a57600080fd5b50610a63612582565b604051610a7091906154a4565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b91906140e7565b612588565b604051610aad9190615022565b60405180910390f35b610ad06004803603810190610acb91906140e7565b61262f565b005b348015610ade57600080fd5b50610af96004803603810190610af49190613dc7565b6127be565b604051610b0691906154a4565b60405180910390f35b348015610b1b57600080fd5b50610b24612807565b604051610b3191906154a4565b60405180910390f35b348015610b4657600080fd5b50610b4f612856565b005b348015610b5d57600080fd5b50610b666128fe565b604051610b7391906154a4565b60405180910390f35b348015610b8857600080fd5b50610b91612908565b604051610b9e9190615022565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc99190613e19565b612996565b604051610bdb9190614f99565b60405180910390f35b348015610bf057600080fd5b50610bf9612a2a565b604051610c0691906154a4565b60405180910390f35b348015610c1b57600080fd5b50610c366004803603810190610c319190613dc7565b612a30565b005b348015610c4457600080fd5b50610c4d612b28565b604051610c5a9190615022565b60405180910390f35b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d465750610d4582612bb6565b5b9050919050565b610d55610c63565b73ffffffffffffffffffffffffffffffffffffffff16610d73611da9565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090615364565b60405180910390fd5b60195482601154610dda919061559e565b10610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190615264565b60405180910390fd5b610e248282612c20565b8160116000828254610e36919061559e565b925050819055505050565b606060008054610e50906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7c906157bb565b8015610ec95780601f10610e9e57610100808354040283529160200191610ec9565b820191906000526020600020905b815481529060010190602001808311610eac57829003601f168201915b5050505050905090565b6000610ede82612cba565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490615324565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6382611979565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90615404565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff3610c63565b73ffffffffffffffffffffffffffffffffffffffff16148061102257506110218161101c610c63565b612996565b5b611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890615284565b60405180910390fd5b61106b8383612d26565b505050565b611078610c63565b73ffffffffffffffffffffffffffffffffffffffff16611096611da9565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390615364565b60405180910390fd5b600060125414611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890615344565b60405180910390fd5b6000601a8054611140906157bb565b90501415611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90615484565b60405180910390fd5b611191600e54600d54612ddf565b50565b61119c610c63565b73ffffffffffffffffffffffffffffffffffffffff166111ba611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790615364565b60405180910390fd5b6000601a805461121f906157bb565b905014611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890615044565b60405180910390fd5b80601a9080519060200190611277929190613b4d565b5050565b6000601054905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90615144565b60405180910390fd5b600060095447611317919061559e565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600854600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846113a99190615625565b6113b391906155f4565b6113bd919061567f565b90506000811415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90615244565b60405180910390fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461144e919061559e565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060095461149f919061559e565b6009819055506114af8382612f41565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516114e0929190614ebd565b60405180910390a1505050565b6114fe6114f8610c63565b82613035565b61153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490615424565b60405180910390fd5b611548838383613113565b505050565b600061155882612cba565b611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90615064565b60405180910390fd5b6018546115a2612807565b836115ad919061559e565b6115b7919061584a565b9050919050565b60155481565b6115cc610c63565b73ffffffffffffffffffffffffffffffffffffffff166115ea611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790615364565b60405180910390fd5b8060139080519060200190611656929190613b4d565b5050565b60185481565b6000600854905090565b611672610c63565b73ffffffffffffffffffffffffffffffffffffffff16611690611da9565b73ffffffffffffffffffffffffffffffffffffffff16146116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90615364565b60405180910390fd5b6000601254141561172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390615444565b60405180910390fd5b601d60029054906101000a900460ff1615601d60026101000a81548160ff021916908315150217905550565b611760610c63565b73ffffffffffffffffffffffffffffffffffffffff1661177e611da9565b73ffffffffffffffffffffffffffffffffffffffff16146117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90615364565b60405180910390fd5b60005b838390508110156118995781601e6000868685818110611820577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118359190613dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611891906157ed565b9150506117d7565b50505050565b6118ba83838360405180602001604052806000815250612520565b505050565b601c80546118cc906157bb565b80601f01602080910402602001604051908101604052809291908181526020018280546118f8906157bb565b80156119455780601f1061191a57610100808354040283529160200191611945565b820191906000526020600020905b81548152906001019060200180831161192857829003601f168201915b505050505081565b601d60029054906101000a900460ff1681565b601d60009054906101000a900460ff1681565b60145481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a19906152c4565b60405180910390fd5b80915050919050565b601d60019054906101000a900460ff1681565b60195481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906152a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b04610c63565b73ffffffffffffffffffffffffffffffffffffffff16611b22611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f90615364565b60405180910390fd5b611b82600061336f565b565b611b8c610c63565b73ffffffffffffffffffffffffffffffffffffffff16611baa611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790615364565b60405180910390fd5b601d60009054906101000a900460ff1615601d60006101000a81548160ff021916908315150217905550565b611c34610c63565b73ffffffffffffffffffffffffffffffffffffffff16611c52611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90615364565b60405180910390fd5b60005b600f80549050811015611d3857611d25600f8281548110611cf5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611285565b8080611d30906157ed565b915050611cab565b50565b6000600c8281548110611d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ddb610c63565b73ffffffffffffffffffffffffffffffffffffffff16611df9611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690615364565b60405180910390fd5b80601b9080519060200190611e65929190613b4d565b5050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee906153e4565b60405180910390fd5b611f018282613435565b5050565b606060018054611f14906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611f40906157bb565b8015611f8d5780601f10611f6257610100808354040283529160200191611f8d565b820191906000526020600020905b815481529060010190602001808311611f7057829003601f168201915b5050505050905090565b611f9f610c63565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611da9565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90615364565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161206d9190614ea2565b60206040518083038186803b15801561208557600080fd5b505afa158015612099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bd9190614110565b10156120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f5906152e4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612159929190614f32565b602060405180830381600087803b15801561217357600080fd5b505af1158015612187573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ab9190613fef565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601e6020528060005260406000206000915054906101000a900460ff1681565b601d60019054906101000a900460ff16612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f906151c4565b60405180910390fd5b6016548111156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490615124565b60405180910390fd5b806017546122bb9190615625565b34146122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390615104565b60405180910390fd5b6123068133612c20565b50565b612311610c63565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690615184565b60405180910390fd5b806005600061238c610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612439610c63565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161247e9190614f99565b60405180910390a35050565b612492610c63565b73ffffffffffffffffffffffffffffffffffffffff166124b0611da9565b73ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90615364565b60405180910390fd5b80601c908051906020019061251c929190613b4d565b5050565b61253161252b610c63565b83613035565b612570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256790615424565b60405180910390fd5b61257c8484848461344d565b50505050565b60175481565b606061259382612cba565b6125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c9906153a4565b60405180910390fd5b60006125dc6134a9565b905060008151116125fc5760405180602001604052806000815250612627565b806126068461353b565b604051602001612617929190614e69565b6040516020818303038152906040525b915050919050565b601d60009054906101000a900460ff1661267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590615464565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906153c4565b60405180910390fd5b806015546127189190615625565b3414612759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275090615104565b60405180910390fd5b6014548161276633611a44565b612770919061559e565b11156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a8906151a4565b60405180910390fd5b6127bb8133612c20565b50565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080601254141561284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590615444565b60405180910390fd5b601254905090565b61285e610c63565b73ffffffffffffffffffffffffffffffffffffffff1661287c611da9565b73ffffffffffffffffffffffffffffffffffffffff16146128d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c990615364565b60405180910390fd5b601d60019054906101000a900460ff1615601d60016101000a81548160ff021916908315150217905550565b6000600954905090565b601b8054612915906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612941906157bb565b801561298e5780601f106129635761010080835404028352916020019161298e565b820191906000526020600020905b81548152906001019060200180831161297157829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60165481565b612a38610c63565b73ffffffffffffffffffffffffffffffffffffffff16612a56611da9565b73ffffffffffffffffffffffffffffffffffffffff1614612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa390615364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b13906150a4565b60405180910390fd5b612b258161336f565b50565b601a8054612b35906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612b61906157bb565b8015612bae5780601f10612b8357610100808354040283529160200191612bae565b820191906000526020600020905b815481529060010190602001808311612b9157829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60185482601054612c31919061559e565b10612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c68906150e4565b60405180910390fd5b60005b82811015612cb557612c88826010546136e8565b600160106000828254612c9b919061559e565b925050819055508080612cad906157ed565b915050612c74565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d9983611979565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001612e53929190614fb4565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612e8093929190614f5b565b602060405180830381600087803b158015612e9a57600080fd5b505af1158015612eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ed29190613fef565b506000612ef5846000306007600089815260200190815260200160002054613706565b905060016007600086815260200190815260200160002054612f17919061559e565b6007600086815260200190815260200160002081905550612f388482613742565b91505092915050565b80471015612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90615204565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612faa90614e8d565b60006040518083038185875af1925050503d8060008114612fe7576040519150601f19603f3d011682016040523d82523d6000602084013e612fec565b606091505b5050905080613030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613027906151e4565b60405180910390fd5b505050565b600061304082612cba565b61307f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307690615224565b60405180910390fd5b600061308a83611979565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130f957508373ffffffffffffffffffffffffffffffffffffffff166130e184610ed3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061310a57506131098185612996565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661313382611979565b73ffffffffffffffffffffffffffffffffffffffff1614613189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318090615384565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f090615164565b60405180910390fd5b613204838383613775565b61320f600082612d26565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461325f919061567f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132b6919061559e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60185481613443919061584a565b6012819055505050565b613458848484613113565b6134648484848461377a565b6134a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349a90615084565b60405180910390fd5b50505050565b6060601380546134b8906157bb565b80601f01602080910402602001604051908101604052809291908181526020018280546134e4906157bb565b80156135315780601f1061350657610100808354040283529160200191613531565b820191906000526020600020905b81548152906001019060200180831161351457829003601f168201915b5050505050905090565b60606000821415613583576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136e3565b600082905060005b600082146135b557808061359e906157ed565b915050600a826135ae91906155f4565b915061358b565b60008167ffffffffffffffff8111156135f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136295781602001600182028036833780820191505090505b5090505b600085146136dc57600182613642919061567f565b9150600a85613651919061584a565b603061365d919061559e565b60f81b818381518110613699577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d591906155f4565b945061362d565b8093505050505b919050565b613702828260405180602001604052806000815250613911565b5050565b60008484848460405160200161371f9493929190614fdd565b6040516020818303038152906040528051906020012060001c9050949350505050565b60008282604051602001613757929190614e3d565b60405160208183030381529060405280519060200120905092915050565b505050565b600061379b8473ffffffffffffffffffffffffffffffffffffffff1661396c565b15613904578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137c4610c63565b8786866040518563ffffffff1660e01b81526004016137e69493929190614ee6565b602060405180830381600087803b15801561380057600080fd5b505af192505050801561383157506040513d601f19601f8201168201806040525081019061382e919061407d565b60015b6138b4573d8060008114613861576040519150601f19603f3d011682016040523d82523d6000602084013e613866565b606091505b506000815114156138ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a390615084565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613909565b600190505b949350505050565b61391b838361397f565b613928600084848461377a565b613967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395e90615084565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e690615304565b60405180910390fd5b6139f881612cba565b15613a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2f906150c4565b60405180910390fd5b613a4460008383613775565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a94919061559e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b59906157bb565b90600052602060002090601f016020900481019282613b7b5760008555613bc2565b82601f10613b9457805160ff1916838001178555613bc2565b82800160010185558215613bc2579182015b82811115613bc1578251825591602001919060010190613ba6565b5b509050613bcf9190613bd3565b5090565b5b80821115613bec576000816000905550600101613bd4565b5090565b6000613c03613bfe846154f0565b6154bf565b905082815260208101848484011115613c1b57600080fd5b613c26848285615779565b509392505050565b6000613c41613c3c84615520565b6154bf565b905082815260208101848484011115613c5957600080fd5b613c64848285615779565b509392505050565b600081359050613c7b81615948565b92915050565b600081359050613c908161595f565b92915050565b60008083601f840112613ca857600080fd5b8235905067ffffffffffffffff811115613cc157600080fd5b602083019150836020820283011115613cd957600080fd5b9250929050565b600081359050613cef81615976565b92915050565b600081519050613d0481615976565b92915050565b600081359050613d198161598d565b92915050565b600081359050613d2e816159a4565b92915050565b600081519050613d43816159a4565b92915050565b600082601f830112613d5a57600080fd5b8135613d6a848260208601613bf0565b91505092915050565b600082601f830112613d8457600080fd5b8135613d94848260208601613c2e565b91505092915050565b600081359050613dac816159bb565b92915050565b600081519050613dc1816159bb565b92915050565b600060208284031215613dd957600080fd5b6000613de784828501613c6c565b91505092915050565b600060208284031215613e0257600080fd5b6000613e1084828501613c81565b91505092915050565b60008060408385031215613e2c57600080fd5b6000613e3a85828601613c6c565b9250506020613e4b85828601613c6c565b9150509250929050565b600080600060608486031215613e6a57600080fd5b6000613e7886828701613c6c565b9350506020613e8986828701613c6c565b9250506040613e9a86828701613d9d565b9150509250925092565b60008060008060808587031215613eba57600080fd5b6000613ec887828801613c6c565b9450506020613ed987828801613c6c565b9350506040613eea87828801613d9d565b925050606085013567ffffffffffffffff811115613f0757600080fd5b613f1387828801613d49565b91505092959194509250565b60008060408385031215613f3257600080fd5b6000613f4085828601613c6c565b9250506020613f5185828601613ce0565b9150509250929050565b60008060408385031215613f6e57600080fd5b6000613f7c85828601613c6c565b9250506020613f8d85828601613d9d565b9150509250929050565b600080600060408486031215613fac57600080fd5b600084013567ffffffffffffffff811115613fc657600080fd5b613fd286828701613c96565b93509350506020613fe586828701613ce0565b9150509250925092565b60006020828403121561400157600080fd5b600061400f84828501613cf5565b91505092915050565b6000806040838503121561402b57600080fd5b600061403985828601613d0a565b925050602061404a85828601613d9d565b9150509250929050565b60006020828403121561406657600080fd5b600061407484828501613d1f565b91505092915050565b60006020828403121561408f57600080fd5b600061409d84828501613d34565b91505092915050565b6000602082840312156140b857600080fd5b600082013567ffffffffffffffff8111156140d257600080fd5b6140de84828501613d73565b91505092915050565b6000602082840312156140f957600080fd5b600061410784828501613d9d565b91505092915050565b60006020828403121561412257600080fd5b600061413084828501613db2565b91505092915050565b6000806040838503121561414c57600080fd5b600061415a85828601613d9d565b925050602061416b85828601613c6c565b9150509250929050565b61417e81615743565b82525050565b61418d816156b3565b82525050565b61419c816156d7565b82525050565b6141ab816156e3565b82525050565b6141c26141bd826156e3565b615836565b82525050565b60006141d382615550565b6141dd8185615566565b93506141ed818560208601615788565b6141f681615937565b840191505092915050565b600061420c8261555b565b6142168185615582565b9350614226818560208601615788565b61422f81615937565b840191505092915050565b60006142458261555b565b61424f8185615593565b935061425f818560208601615788565b80840191505092915050565b6000614278602483615582565b91507f50726f76656e616e636520686173682068617320616c7265616479206265656e60008301527f20736574000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142de601b83615582565b91507f517565727920666f72206e6f6e6578697374656e7420746f6b656e00000000006000830152602082019050919050565b600061431e603283615582565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614384602683615582565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143ea601c83615582565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061442a602083615582565b91507f45786365656473206d6178696d756d206e756d626572206f6620746f6b656e736000830152602082019050919050565b600061446a601983615582565b91507f496e76616c696420457468657220616d6f756e742073656e74000000000000006000830152602082019050919050565b60006144aa602a83615582565b91507f4578636565647320746865206d6178696d756d20616d6f756e7420746f206d6960008301527f6e74206174206f6e6365000000000000000000000000000000000000000000006020830152604082019050919050565b6000614510602683615582565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614576602483615582565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145dc601983615582565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061461c602383615582565b91507f457863656564732072656d61696e696e672077686974656c6973742062616c6160008301527f6e636500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614682601283615582565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b60006146c2603a83615582565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000614728601d83615582565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000614768602c83615582565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006147ce602b83615582565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b6000614834602983615582565b91507f45786365656473206d6178696d756d206e756d626572206f662072657365727660008301527f656420746f6b656e7300000000000000000000000000000000000000000000006020830152604082019050919050565b600061489a603883615582565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614900602a83615582565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614966602983615582565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149cc601983615582565b91507f496e73756666696369656e74204c494e4b2062616c616e6365000000000000006000830152602082019050919050565b6000614a0c602083615582565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614a4c602c83615582565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ab2601583615582565b91507f4f666673657420697320616c72656164792073657400000000000000000000006000830152602082019050919050565b6000614af2602083615582565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614b32602983615582565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b98602f83615582565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614bfe601783615582565b91507f41646472657373206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000614c3e601f83615582565b91507f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006000830152602082019050919050565b6000614c7e602183615582565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ce4600083615577565b9150600082019050919050565b6000614cfe603183615582565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614d64601d83615582565b91507f4f666673657420686173206e6f74206265656e2067656e6572617465640000006000830152602082019050919050565b6000614da4601583615582565b91507f50726573616c65206973206e6f742061637469766500000000000000000000006000830152602082019050919050565b6000614de4602083615582565b91507f50726f76656e616e6365206861736820686173206e6f74206265656e207365746000830152602082019050919050565b614e2081615739565b82525050565b614e37614e3282615739565b615840565b82525050565b6000614e4982856141b1565b602082019150614e598284614e26565b6020820191508190509392505050565b6000614e75828561423a565b9150614e81828461423a565b91508190509392505050565b6000614e9882614cd7565b9150819050919050565b6000602082019050614eb76000830184614184565b92915050565b6000604082019050614ed26000830185614175565b614edf6020830184614e17565b9392505050565b6000608082019050614efb6000830187614184565b614f086020830186614184565b614f156040830185614e17565b8181036060830152614f2781846141c8565b905095945050505050565b6000604082019050614f476000830185614184565b614f546020830184614e17565b9392505050565b6000606082019050614f706000830186614184565b614f7d6020830185614e17565b8181036040830152614f8f81846141c8565b9050949350505050565b6000602082019050614fae6000830184614193565b92915050565b6000604082019050614fc960008301856141a2565b614fd66020830184614e17565b9392505050565b6000608082019050614ff260008301876141a2565b614fff6020830186614e17565b61500c6040830185614184565b6150196060830184614e17565b95945050505050565b6000602082019050818103600083015261503c8184614201565b905092915050565b6000602082019050818103600083015261505d8161426b565b9050919050565b6000602082019050818103600083015261507d816142d1565b9050919050565b6000602082019050818103600083015261509d81614311565b9050919050565b600060208201905081810360008301526150bd81614377565b9050919050565b600060208201905081810360008301526150dd816143dd565b9050919050565b600060208201905081810360008301526150fd8161441d565b9050919050565b6000602082019050818103600083015261511d8161445d565b9050919050565b6000602082019050818103600083015261513d8161449d565b9050919050565b6000602082019050818103600083015261515d81614503565b9050919050565b6000602082019050818103600083015261517d81614569565b9050919050565b6000602082019050818103600083015261519d816145cf565b9050919050565b600060208201905081810360008301526151bd8161460f565b9050919050565b600060208201905081810360008301526151dd81614675565b9050919050565b600060208201905081810360008301526151fd816146b5565b9050919050565b6000602082019050818103600083015261521d8161471b565b9050919050565b6000602082019050818103600083015261523d8161475b565b9050919050565b6000602082019050818103600083015261525d816147c1565b9050919050565b6000602082019050818103600083015261527d81614827565b9050919050565b6000602082019050818103600083015261529d8161488d565b9050919050565b600060208201905081810360008301526152bd816148f3565b9050919050565b600060208201905081810360008301526152dd81614959565b9050919050565b600060208201905081810360008301526152fd816149bf565b9050919050565b6000602082019050818103600083015261531d816149ff565b9050919050565b6000602082019050818103600083015261533d81614a3f565b9050919050565b6000602082019050818103600083015261535d81614aa5565b9050919050565b6000602082019050818103600083015261537d81614ae5565b9050919050565b6000602082019050818103600083015261539d81614b25565b9050919050565b600060208201905081810360008301526153bd81614b8b565b9050919050565b600060208201905081810360008301526153dd81614bf1565b9050919050565b600060208201905081810360008301526153fd81614c31565b9050919050565b6000602082019050818103600083015261541d81614c71565b9050919050565b6000602082019050818103600083015261543d81614cf1565b9050919050565b6000602082019050818103600083015261545d81614d57565b9050919050565b6000602082019050818103600083015261547d81614d97565b9050919050565b6000602082019050818103600083015261549d81614dd7565b9050919050565b60006020820190506154b96000830184614e17565b92915050565b6000604051905081810181811067ffffffffffffffff821117156154e6576154e5615908565b5b8060405250919050565b600067ffffffffffffffff82111561550b5761550a615908565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561553b5761553a615908565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155a982615739565b91506155b483615739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155e9576155e861587b565b5b828201905092915050565b60006155ff82615739565b915061560a83615739565b92508261561a576156196158aa565b5b828204905092915050565b600061563082615739565b915061563b83615739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156156745761567361587b565b5b828202905092915050565b600061568a82615739565b915061569583615739565b9250828210156156a8576156a761587b565b5b828203905092915050565b60006156be82615719565b9050919050565b60006156d082615719565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061574e82615755565b9050919050565b600061576082615767565b9050919050565b600061577282615719565b9050919050565b82818337600083830152505050565b60005b838110156157a657808201518184015260208101905061578b565b838111156157b5576000848401525b50505050565b600060028204905060018216806157d357607f821691505b602082108114156157e7576157e66158d9565b5b50919050565b60006157f882615739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561582b5761582a61587b565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061585582615739565b915061586083615739565b9250826158705761586f6158aa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615951816156b3565b811461595c57600080fd5b50565b615968816156c5565b811461597357600080fd5b50565b61597f816156d7565b811461598a57600080fd5b50565b615996816156e3565b81146159a157600080fd5b50565b6159ad816156ed565b81146159b857600080fd5b50565b6159c481615739565b81146159cf57600080fd5b5056fea2646970667358221220977d75374ebc1e420d3f7ea1074cf0c25a2668aea9cc17098fecddf36d0a223864736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e7a65666c6f726973742e636f6d2f666c6f776572732f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000dc062848a9a16857aa16f2b4ffd50c496957d3df00000000000000000000000039d2db78b92176169bd6a822fd12b9c1637d14ff000000000000000000000000cc1ac125d1852600495cdd67485c9da68e7a18ef000000000000000000000000d4f7d89b873d20188a27bb665b2503c25b9542f300000000000000000000000041853543d35ff75c4181529ed6aed85c66231569000000000000000000000000ba6e1c26be2f8b46d9e7ab7573b99921ee81acf50000000000000000000000007f7a1ee3f132b2b0ef05422594191d845001a43a00000000000000000000000091f060f6036f41bf2a992a67e412af1ccddbd3dc00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000001619000000000000000000000000000000000000000000000000000000000000033d000000000000000000000000000000000000000000000000000000000000033d000000000000000000000000000000000000000000000000000000000000033d000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000020d000000000000000000000000000000000000000000000000000000000000013700000000000000000000000000000000000000000000000000000000000002cf

Deployed Bytecode

0x60806040526004361061031e5760003560e01c8063715018a6116101ab578063a7f7bab7116100f7578063de8b51e111610095578063e985e9c51161006f578063e985e9c514610ba7578063f0292a0314610be4578063f2fde38b14610c0f578063ff1b655614610c3857610365565b8063de8b51e114610b3a578063e33b7de314610b51578063e8a3d48514610b7c57610365565b8063c87b56dd116100d1578063c87b56dd14610a79578063c9b298f114610ab6578063ce7c2ac214610ad2578063dc8c57b414610b0f57610365565b8063a7f7bab7146109fc578063b88d4fde14610a25578063c002d23d14610a4e57610365565b806394985ddd116101645780639852595c1161013e5780639852595c1461093d5780639b19251a1461097a578063a0712d68146109b7578063a22cb465146109d357610365565b806394985ddd146108c057806395d89b41146108e9578063983fbab21461091457610365565b8063715018a6146107ea5780637731104914610801578063853828b6146108185780638b83209b1461082f5780638da5cb5b1461086c578063938e3d7b1461089757610365565b806332cb6b0c1161026a57806351830227116102235780636352211e116101fd5780636352211e1461071a57806368428a1b146107575780636ba90c6e1461078257806370a08231146107ad57610365565b8063518302271461069957806353135ca0146106c4578063549527c3146106ef57610365565b806332cb6b0c146105af5780633a98ef39146105da5780633b2c3fb6146106055780633c271a051461061c57806342842e0e14610645578063505ad5081461066e57610365565b806310969523116102d757806323b872dd116102b157806323b872dd146104f5578063269f08d71461051e5780632a234e571461055b57806330176e131461058657610365565b8063109695231461047857806318160ddd146104a157806319165587146104cc57610365565b806301ffc9a71461036a57806303339bcb146103a757806306fdde03146103d0578063081812fc146103fb578063095ea7b3146104385780630f1876a21461046157610365565b36610365577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061034c610c63565b3460405161035b929190614f32565b60405180910390a1005b600080fd5b34801561037657600080fd5b50610391600480360381019061038c9190614054565b610c6b565b60405161039e9190614f99565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190614139565b610d4d565b005b3480156103dc57600080fd5b506103e5610e41565b6040516103f29190615022565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d91906140e7565b610ed3565b60405161042f9190614ea2565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613f5b565b610f58565b005b34801561046d57600080fd5b50610476611070565b005b34801561048457600080fd5b5061049f600480360381019061049a91906140a6565b611194565b005b3480156104ad57600080fd5b506104b661127b565b6040516104c391906154a4565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613df0565b611285565b005b34801561050157600080fd5b5061051c60048036038101906105179190613e55565b6114ed565b005b34801561052a57600080fd5b50610545600480360381019061054091906140e7565b61154d565b60405161055291906154a4565b60405180910390f35b34801561056757600080fd5b506105706115be565b60405161057d91906154a4565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a891906140a6565b6115c4565b005b3480156105bb57600080fd5b506105c461165a565b6040516105d191906154a4565b60405180910390f35b3480156105e657600080fd5b506105ef611660565b6040516105fc91906154a4565b60405180910390f35b34801561061157600080fd5b5061061a61166a565b005b34801561062857600080fd5b50610643600480360381019061063e9190613f97565b611758565b005b34801561065157600080fd5b5061066c60048036038101906106679190613e55565b61189f565b005b34801561067a57600080fd5b506106836118bf565b6040516106909190615022565b60405180910390f35b3480156106a557600080fd5b506106ae61194d565b6040516106bb9190614f99565b60405180910390f35b3480156106d057600080fd5b506106d9611960565b6040516106e69190614f99565b60405180910390f35b3480156106fb57600080fd5b50610704611973565b60405161071191906154a4565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c91906140e7565b611979565b60405161074e9190614ea2565b60405180910390f35b34801561076357600080fd5b5061076c611a2b565b6040516107799190614f99565b60405180910390f35b34801561078e57600080fd5b50610797611a3e565b6040516107a491906154a4565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613dc7565b611a44565b6040516107e191906154a4565b60405180910390f35b3480156107f657600080fd5b506107ff611afc565b005b34801561080d57600080fd5b50610816611b84565b005b34801561082457600080fd5b5061082d611c2c565b005b34801561083b57600080fd5b50610856600480360381019061085191906140e7565b611d3b565b6040516108639190614ea2565b60405180910390f35b34801561087857600080fd5b50610881611da9565b60405161088e9190614ea2565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b991906140a6565b611dd3565b005b3480156108cc57600080fd5b506108e760048036038101906108e29190614018565b611e69565b005b3480156108f557600080fd5b506108fe611f05565b60405161090b9190615022565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613f5b565b611f97565b005b34801561094957600080fd5b50610964600480360381019061095f9190613dc7565b6121b0565b60405161097191906154a4565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190613dc7565b6121f9565b6040516109ae9190614f99565b60405180910390f35b6109d160048036038101906109cc91906140e7565b612219565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613f1f565b612309565b005b348015610a0857600080fd5b50610a236004803603810190610a1e91906140a6565b61248a565b005b348015610a3157600080fd5b50610a4c6004803603810190610a479190613ea4565b612520565b005b348015610a5a57600080fd5b50610a63612582565b604051610a7091906154a4565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b91906140e7565b612588565b604051610aad9190615022565b60405180910390f35b610ad06004803603810190610acb91906140e7565b61262f565b005b348015610ade57600080fd5b50610af96004803603810190610af49190613dc7565b6127be565b604051610b0691906154a4565b60405180910390f35b348015610b1b57600080fd5b50610b24612807565b604051610b3191906154a4565b60405180910390f35b348015610b4657600080fd5b50610b4f612856565b005b348015610b5d57600080fd5b50610b666128fe565b604051610b7391906154a4565b60405180910390f35b348015610b8857600080fd5b50610b91612908565b604051610b9e9190615022565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc99190613e19565b612996565b604051610bdb9190614f99565b60405180910390f35b348015610bf057600080fd5b50610bf9612a2a565b604051610c0691906154a4565b60405180910390f35b348015610c1b57600080fd5b50610c366004803603810190610c319190613dc7565b612a30565b005b348015610c4457600080fd5b50610c4d612b28565b604051610c5a9190615022565b60405180910390f35b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d465750610d4582612bb6565b5b9050919050565b610d55610c63565b73ffffffffffffffffffffffffffffffffffffffff16610d73611da9565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090615364565b60405180910390fd5b60195482601154610dda919061559e565b10610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190615264565b60405180910390fd5b610e248282612c20565b8160116000828254610e36919061559e565b925050819055505050565b606060008054610e50906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7c906157bb565b8015610ec95780601f10610e9e57610100808354040283529160200191610ec9565b820191906000526020600020905b815481529060010190602001808311610eac57829003601f168201915b5050505050905090565b6000610ede82612cba565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490615324565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6382611979565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90615404565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff3610c63565b73ffffffffffffffffffffffffffffffffffffffff16148061102257506110218161101c610c63565b612996565b5b611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890615284565b60405180910390fd5b61106b8383612d26565b505050565b611078610c63565b73ffffffffffffffffffffffffffffffffffffffff16611096611da9565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390615364565b60405180910390fd5b600060125414611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890615344565b60405180910390fd5b6000601a8054611140906157bb565b90501415611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90615484565b60405180910390fd5b611191600e54600d54612ddf565b50565b61119c610c63565b73ffffffffffffffffffffffffffffffffffffffff166111ba611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790615364565b60405180910390fd5b6000601a805461121f906157bb565b905014611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890615044565b60405180910390fd5b80601a9080519060200190611277929190613b4d565b5050565b6000601054905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90615144565b60405180910390fd5b600060095447611317919061559e565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600854600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846113a99190615625565b6113b391906155f4565b6113bd919061567f565b90506000811415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90615244565b60405180910390fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461144e919061559e565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060095461149f919061559e565b6009819055506114af8382612f41565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516114e0929190614ebd565b60405180910390a1505050565b6114fe6114f8610c63565b82613035565b61153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490615424565b60405180910390fd5b611548838383613113565b505050565b600061155882612cba565b611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90615064565b60405180910390fd5b6018546115a2612807565b836115ad919061559e565b6115b7919061584a565b9050919050565b60155481565b6115cc610c63565b73ffffffffffffffffffffffffffffffffffffffff166115ea611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790615364565b60405180910390fd5b8060139080519060200190611656929190613b4d565b5050565b60185481565b6000600854905090565b611672610c63565b73ffffffffffffffffffffffffffffffffffffffff16611690611da9565b73ffffffffffffffffffffffffffffffffffffffff16146116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90615364565b60405180910390fd5b6000601254141561172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390615444565b60405180910390fd5b601d60029054906101000a900460ff1615601d60026101000a81548160ff021916908315150217905550565b611760610c63565b73ffffffffffffffffffffffffffffffffffffffff1661177e611da9565b73ffffffffffffffffffffffffffffffffffffffff16146117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90615364565b60405180910390fd5b60005b838390508110156118995781601e6000868685818110611820577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118359190613dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611891906157ed565b9150506117d7565b50505050565b6118ba83838360405180602001604052806000815250612520565b505050565b601c80546118cc906157bb565b80601f01602080910402602001604051908101604052809291908181526020018280546118f8906157bb565b80156119455780601f1061191a57610100808354040283529160200191611945565b820191906000526020600020905b81548152906001019060200180831161192857829003601f168201915b505050505081565b601d60029054906101000a900460ff1681565b601d60009054906101000a900460ff1681565b60145481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a19906152c4565b60405180910390fd5b80915050919050565b601d60019054906101000a900460ff1681565b60195481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906152a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b04610c63565b73ffffffffffffffffffffffffffffffffffffffff16611b22611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f90615364565b60405180910390fd5b611b82600061336f565b565b611b8c610c63565b73ffffffffffffffffffffffffffffffffffffffff16611baa611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790615364565b60405180910390fd5b601d60009054906101000a900460ff1615601d60006101000a81548160ff021916908315150217905550565b611c34610c63565b73ffffffffffffffffffffffffffffffffffffffff16611c52611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90615364565b60405180910390fd5b60005b600f80549050811015611d3857611d25600f8281548110611cf5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611285565b8080611d30906157ed565b915050611cab565b50565b6000600c8281548110611d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ddb610c63565b73ffffffffffffffffffffffffffffffffffffffff16611df9611da9565b73ffffffffffffffffffffffffffffffffffffffff1614611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690615364565b60405180910390fd5b80601b9080519060200190611e65929190613b4d565b5050565b7f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee906153e4565b60405180910390fd5b611f018282613435565b5050565b606060018054611f14906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611f40906157bb565b8015611f8d5780601f10611f6257610100808354040283529160200191611f8d565b820191906000526020600020905b815481529060010190602001808311611f7057829003601f168201915b5050505050905090565b611f9f610c63565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611da9565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90615364565b60405180910390fd5b807f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161206d9190614ea2565b60206040518083038186803b15801561208557600080fd5b505afa158015612099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bd9190614110565b10156120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f5906152e4565b60405180910390fd5b7f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612159929190614f32565b602060405180830381600087803b15801561217357600080fd5b505af1158015612187573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ab9190613fef565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601e6020528060005260406000206000915054906101000a900460ff1681565b601d60019054906101000a900460ff16612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f906151c4565b60405180910390fd5b6016548111156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490615124565b60405180910390fd5b806017546122bb9190615625565b34146122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390615104565b60405180910390fd5b6123068133612c20565b50565b612311610c63565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690615184565b60405180910390fd5b806005600061238c610c63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612439610c63565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161247e9190614f99565b60405180910390a35050565b612492610c63565b73ffffffffffffffffffffffffffffffffffffffff166124b0611da9565b73ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90615364565b60405180910390fd5b80601c908051906020019061251c929190613b4d565b5050565b61253161252b610c63565b83613035565b612570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256790615424565b60405180910390fd5b61257c8484848461344d565b50505050565b60175481565b606061259382612cba565b6125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c9906153a4565b60405180910390fd5b60006125dc6134a9565b905060008151116125fc5760405180602001604052806000815250612627565b806126068461353b565b604051602001612617929190614e69565b6040516020818303038152906040525b915050919050565b601d60009054906101000a900460ff1661267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590615464565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906153c4565b60405180910390fd5b806015546127189190615625565b3414612759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275090615104565b60405180910390fd5b6014548161276633611a44565b612770919061559e565b11156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a8906151a4565b60405180910390fd5b6127bb8133612c20565b50565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080601254141561284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590615444565b60405180910390fd5b601254905090565b61285e610c63565b73ffffffffffffffffffffffffffffffffffffffff1661287c611da9565b73ffffffffffffffffffffffffffffffffffffffff16146128d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c990615364565b60405180910390fd5b601d60019054906101000a900460ff1615601d60016101000a81548160ff021916908315150217905550565b6000600954905090565b601b8054612915906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612941906157bb565b801561298e5780601f106129635761010080835404028352916020019161298e565b820191906000526020600020905b81548152906001019060200180831161297157829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60165481565b612a38610c63565b73ffffffffffffffffffffffffffffffffffffffff16612a56611da9565b73ffffffffffffffffffffffffffffffffffffffff1614612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa390615364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b13906150a4565b60405180910390fd5b612b258161336f565b50565b601a8054612b35906157bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612b61906157bb565b8015612bae5780601f10612b8357610100808354040283529160200191612bae565b820191906000526020600020905b815481529060010190602001808311612b9157829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60185482601054612c31919061559e565b10612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c68906150e4565b60405180910390fd5b60005b82811015612cb557612c88826010546136e8565b600160106000828254612c9b919061559e565b925050819055508080612cad906157ed565b915050612c74565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d9983611979565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001612e53929190614fb4565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612e8093929190614f5b565b602060405180830381600087803b158015612e9a57600080fd5b505af1158015612eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ed29190613fef565b506000612ef5846000306007600089815260200190815260200160002054613706565b905060016007600086815260200190815260200160002054612f17919061559e565b6007600086815260200190815260200160002081905550612f388482613742565b91505092915050565b80471015612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90615204565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612faa90614e8d565b60006040518083038185875af1925050503d8060008114612fe7576040519150601f19603f3d011682016040523d82523d6000602084013e612fec565b606091505b5050905080613030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613027906151e4565b60405180910390fd5b505050565b600061304082612cba565b61307f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307690615224565b60405180910390fd5b600061308a83611979565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130f957508373ffffffffffffffffffffffffffffffffffffffff166130e184610ed3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061310a57506131098185612996565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661313382611979565b73ffffffffffffffffffffffffffffffffffffffff1614613189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318090615384565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f090615164565b60405180910390fd5b613204838383613775565b61320f600082612d26565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461325f919061567f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132b6919061559e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60185481613443919061584a565b6012819055505050565b613458848484613113565b6134648484848461377a565b6134a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349a90615084565b60405180910390fd5b50505050565b6060601380546134b8906157bb565b80601f01602080910402602001604051908101604052809291908181526020018280546134e4906157bb565b80156135315780601f1061350657610100808354040283529160200191613531565b820191906000526020600020905b81548152906001019060200180831161351457829003601f168201915b5050505050905090565b60606000821415613583576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136e3565b600082905060005b600082146135b557808061359e906157ed565b915050600a826135ae91906155f4565b915061358b565b60008167ffffffffffffffff8111156135f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136295781602001600182028036833780820191505090505b5090505b600085146136dc57600182613642919061567f565b9150600a85613651919061584a565b603061365d919061559e565b60f81b818381518110613699577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d591906155f4565b945061362d565b8093505050505b919050565b613702828260405180602001604052806000815250613911565b5050565b60008484848460405160200161371f9493929190614fdd565b6040516020818303038152906040528051906020012060001c9050949350505050565b60008282604051602001613757929190614e3d565b60405160208183030381529060405280519060200120905092915050565b505050565b600061379b8473ffffffffffffffffffffffffffffffffffffffff1661396c565b15613904578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137c4610c63565b8786866040518563ffffffff1660e01b81526004016137e69493929190614ee6565b602060405180830381600087803b15801561380057600080fd5b505af192505050801561383157506040513d601f19601f8201168201806040525081019061382e919061407d565b60015b6138b4573d8060008114613861576040519150601f19603f3d011682016040523d82523d6000602084013e613866565b606091505b506000815114156138ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a390615084565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613909565b600190505b949350505050565b61391b838361397f565b613928600084848461377a565b613967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395e90615084565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e690615304565b60405180910390fd5b6139f881612cba565b15613a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2f906150c4565b60405180910390fd5b613a4460008383613775565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a94919061559e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b59906157bb565b90600052602060002090601f016020900481019282613b7b5760008555613bc2565b82601f10613b9457805160ff1916838001178555613bc2565b82800160010185558215613bc2579182015b82811115613bc1578251825591602001919060010190613ba6565b5b509050613bcf9190613bd3565b5090565b5b80821115613bec576000816000905550600101613bd4565b5090565b6000613c03613bfe846154f0565b6154bf565b905082815260208101848484011115613c1b57600080fd5b613c26848285615779565b509392505050565b6000613c41613c3c84615520565b6154bf565b905082815260208101848484011115613c5957600080fd5b613c64848285615779565b509392505050565b600081359050613c7b81615948565b92915050565b600081359050613c908161595f565b92915050565b60008083601f840112613ca857600080fd5b8235905067ffffffffffffffff811115613cc157600080fd5b602083019150836020820283011115613cd957600080fd5b9250929050565b600081359050613cef81615976565b92915050565b600081519050613d0481615976565b92915050565b600081359050613d198161598d565b92915050565b600081359050613d2e816159a4565b92915050565b600081519050613d43816159a4565b92915050565b600082601f830112613d5a57600080fd5b8135613d6a848260208601613bf0565b91505092915050565b600082601f830112613d8457600080fd5b8135613d94848260208601613c2e565b91505092915050565b600081359050613dac816159bb565b92915050565b600081519050613dc1816159bb565b92915050565b600060208284031215613dd957600080fd5b6000613de784828501613c6c565b91505092915050565b600060208284031215613e0257600080fd5b6000613e1084828501613c81565b91505092915050565b60008060408385031215613e2c57600080fd5b6000613e3a85828601613c6c565b9250506020613e4b85828601613c6c565b9150509250929050565b600080600060608486031215613e6a57600080fd5b6000613e7886828701613c6c565b9350506020613e8986828701613c6c565b9250506040613e9a86828701613d9d565b9150509250925092565b60008060008060808587031215613eba57600080fd5b6000613ec887828801613c6c565b9450506020613ed987828801613c6c565b9350506040613eea87828801613d9d565b925050606085013567ffffffffffffffff811115613f0757600080fd5b613f1387828801613d49565b91505092959194509250565b60008060408385031215613f3257600080fd5b6000613f4085828601613c6c565b9250506020613f5185828601613ce0565b9150509250929050565b60008060408385031215613f6e57600080fd5b6000613f7c85828601613c6c565b9250506020613f8d85828601613d9d565b9150509250929050565b600080600060408486031215613fac57600080fd5b600084013567ffffffffffffffff811115613fc657600080fd5b613fd286828701613c96565b93509350506020613fe586828701613ce0565b9150509250925092565b60006020828403121561400157600080fd5b600061400f84828501613cf5565b91505092915050565b6000806040838503121561402b57600080fd5b600061403985828601613d0a565b925050602061404a85828601613d9d565b9150509250929050565b60006020828403121561406657600080fd5b600061407484828501613d1f565b91505092915050565b60006020828403121561408f57600080fd5b600061409d84828501613d34565b91505092915050565b6000602082840312156140b857600080fd5b600082013567ffffffffffffffff8111156140d257600080fd5b6140de84828501613d73565b91505092915050565b6000602082840312156140f957600080fd5b600061410784828501613d9d565b91505092915050565b60006020828403121561412257600080fd5b600061413084828501613db2565b91505092915050565b6000806040838503121561414c57600080fd5b600061415a85828601613d9d565b925050602061416b85828601613c6c565b9150509250929050565b61417e81615743565b82525050565b61418d816156b3565b82525050565b61419c816156d7565b82525050565b6141ab816156e3565b82525050565b6141c26141bd826156e3565b615836565b82525050565b60006141d382615550565b6141dd8185615566565b93506141ed818560208601615788565b6141f681615937565b840191505092915050565b600061420c8261555b565b6142168185615582565b9350614226818560208601615788565b61422f81615937565b840191505092915050565b60006142458261555b565b61424f8185615593565b935061425f818560208601615788565b80840191505092915050565b6000614278602483615582565b91507f50726f76656e616e636520686173682068617320616c7265616479206265656e60008301527f20736574000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142de601b83615582565b91507f517565727920666f72206e6f6e6578697374656e7420746f6b656e00000000006000830152602082019050919050565b600061431e603283615582565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614384602683615582565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143ea601c83615582565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061442a602083615582565b91507f45786365656473206d6178696d756d206e756d626572206f6620746f6b656e736000830152602082019050919050565b600061446a601983615582565b91507f496e76616c696420457468657220616d6f756e742073656e74000000000000006000830152602082019050919050565b60006144aa602a83615582565b91507f4578636565647320746865206d6178696d756d20616d6f756e7420746f206d6960008301527f6e74206174206f6e6365000000000000000000000000000000000000000000006020830152604082019050919050565b6000614510602683615582565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614576602483615582565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145dc601983615582565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061461c602383615582565b91507f457863656564732072656d61696e696e672077686974656c6973742062616c6160008301527f6e636500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614682601283615582565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b60006146c2603a83615582565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000614728601d83615582565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000614768602c83615582565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006147ce602b83615582565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b6000614834602983615582565b91507f45786365656473206d6178696d756d206e756d626572206f662072657365727660008301527f656420746f6b656e7300000000000000000000000000000000000000000000006020830152604082019050919050565b600061489a603883615582565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614900602a83615582565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614966602983615582565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149cc601983615582565b91507f496e73756666696369656e74204c494e4b2062616c616e6365000000000000006000830152602082019050919050565b6000614a0c602083615582565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614a4c602c83615582565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ab2601583615582565b91507f4f666673657420697320616c72656164792073657400000000000000000000006000830152602082019050919050565b6000614af2602083615582565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614b32602983615582565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b98602f83615582565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614bfe601783615582565b91507f41646472657373206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000614c3e601f83615582565b91507f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006000830152602082019050919050565b6000614c7e602183615582565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ce4600083615577565b9150600082019050919050565b6000614cfe603183615582565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614d64601d83615582565b91507f4f666673657420686173206e6f74206265656e2067656e6572617465640000006000830152602082019050919050565b6000614da4601583615582565b91507f50726573616c65206973206e6f742061637469766500000000000000000000006000830152602082019050919050565b6000614de4602083615582565b91507f50726f76656e616e6365206861736820686173206e6f74206265656e207365746000830152602082019050919050565b614e2081615739565b82525050565b614e37614e3282615739565b615840565b82525050565b6000614e4982856141b1565b602082019150614e598284614e26565b6020820191508190509392505050565b6000614e75828561423a565b9150614e81828461423a565b91508190509392505050565b6000614e9882614cd7565b9150819050919050565b6000602082019050614eb76000830184614184565b92915050565b6000604082019050614ed26000830185614175565b614edf6020830184614e17565b9392505050565b6000608082019050614efb6000830187614184565b614f086020830186614184565b614f156040830185614e17565b8181036060830152614f2781846141c8565b905095945050505050565b6000604082019050614f476000830185614184565b614f546020830184614e17565b9392505050565b6000606082019050614f706000830186614184565b614f7d6020830185614e17565b8181036040830152614f8f81846141c8565b9050949350505050565b6000602082019050614fae6000830184614193565b92915050565b6000604082019050614fc960008301856141a2565b614fd66020830184614e17565b9392505050565b6000608082019050614ff260008301876141a2565b614fff6020830186614e17565b61500c6040830185614184565b6150196060830184614e17565b95945050505050565b6000602082019050818103600083015261503c8184614201565b905092915050565b6000602082019050818103600083015261505d8161426b565b9050919050565b6000602082019050818103600083015261507d816142d1565b9050919050565b6000602082019050818103600083015261509d81614311565b9050919050565b600060208201905081810360008301526150bd81614377565b9050919050565b600060208201905081810360008301526150dd816143dd565b9050919050565b600060208201905081810360008301526150fd8161441d565b9050919050565b6000602082019050818103600083015261511d8161445d565b9050919050565b6000602082019050818103600083015261513d8161449d565b9050919050565b6000602082019050818103600083015261515d81614503565b9050919050565b6000602082019050818103600083015261517d81614569565b9050919050565b6000602082019050818103600083015261519d816145cf565b9050919050565b600060208201905081810360008301526151bd8161460f565b9050919050565b600060208201905081810360008301526151dd81614675565b9050919050565b600060208201905081810360008301526151fd816146b5565b9050919050565b6000602082019050818103600083015261521d8161471b565b9050919050565b6000602082019050818103600083015261523d8161475b565b9050919050565b6000602082019050818103600083015261525d816147c1565b9050919050565b6000602082019050818103600083015261527d81614827565b9050919050565b6000602082019050818103600083015261529d8161488d565b9050919050565b600060208201905081810360008301526152bd816148f3565b9050919050565b600060208201905081810360008301526152dd81614959565b9050919050565b600060208201905081810360008301526152fd816149bf565b9050919050565b6000602082019050818103600083015261531d816149ff565b9050919050565b6000602082019050818103600083015261533d81614a3f565b9050919050565b6000602082019050818103600083015261535d81614aa5565b9050919050565b6000602082019050818103600083015261537d81614ae5565b9050919050565b6000602082019050818103600083015261539d81614b25565b9050919050565b600060208201905081810360008301526153bd81614b8b565b9050919050565b600060208201905081810360008301526153dd81614bf1565b9050919050565b600060208201905081810360008301526153fd81614c31565b9050919050565b6000602082019050818103600083015261541d81614c71565b9050919050565b6000602082019050818103600083015261543d81614cf1565b9050919050565b6000602082019050818103600083015261545d81614d57565b9050919050565b6000602082019050818103600083015261547d81614d97565b9050919050565b6000602082019050818103600083015261549d81614dd7565b9050919050565b60006020820190506154b96000830184614e17565b92915050565b6000604051905081810181811067ffffffffffffffff821117156154e6576154e5615908565b5b8060405250919050565b600067ffffffffffffffff82111561550b5761550a615908565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561553b5761553a615908565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155a982615739565b91506155b483615739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155e9576155e861587b565b5b828201905092915050565b60006155ff82615739565b915061560a83615739565b92508261561a576156196158aa565b5b828204905092915050565b600061563082615739565b915061563b83615739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156156745761567361587b565b5b828202905092915050565b600061568a82615739565b915061569583615739565b9250828210156156a8576156a761587b565b5b828203905092915050565b60006156be82615719565b9050919050565b60006156d082615719565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061574e82615755565b9050919050565b600061576082615767565b9050919050565b600061577282615719565b9050919050565b82818337600083830152505050565b60005b838110156157a657808201518184015260208101905061578b565b838111156157b5576000848401525b50505050565b600060028204905060018216806157d357607f821691505b602082108114156157e7576157e66158d9565b5b50919050565b60006157f882615739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561582b5761582a61587b565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061585582615739565b915061586083615739565b9250826158705761586f6158aa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615951816156b3565b811461595c57600080fd5b50565b615968816156c5565b811461597357600080fd5b50565b61597f816156d7565b811461598a57600080fd5b50565b615996816156e3565b81146159a157600080fd5b50565b6159ad816156ed565b81146159b857600080fd5b50565b6159c481615739565b81146159cf57600080fd5b5056fea2646970667358221220977d75374ebc1e420d3f7ea1074cf0c25a2668aea9cc17098fecddf36d0a223864736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e7a65666c6f726973742e636f6d2f666c6f776572732f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000dc062848a9a16857aa16f2b4ffd50c496957d3df00000000000000000000000039d2db78b92176169bd6a822fd12b9c1637d14ff000000000000000000000000cc1ac125d1852600495cdd67485c9da68e7a18ef000000000000000000000000d4f7d89b873d20188a27bb665b2503c25b9542f300000000000000000000000041853543d35ff75c4181529ed6aed85c66231569000000000000000000000000ba6e1c26be2f8b46d9e7ab7573b99921ee81acf50000000000000000000000007f7a1ee3f132b2b0ef05422594191d845001a43a00000000000000000000000091f060f6036f41bf2a992a67e412af1ccddbd3dc00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000001619000000000000000000000000000000000000000000000000000000000000033d000000000000000000000000000000000000000000000000000000000000033d000000000000000000000000000000000000000000000000000000000000033d000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000020d000000000000000000000000000000000000000000000000000000000000013700000000000000000000000000000000000000000000000000000000000002cf

-----Decoded View---------------
Arg [0] : baseTokenURI (string): https://api.zeflorist.com/flowers/
Arg [1] : vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [2] : linkToken (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [3] : keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [4] : linkFee (uint256): 2000000000000000000
Arg [5] : payees (address[]): 0xDC062848a9A16857aa16f2B4Ffd50c496957d3Df,0x39D2DB78B92176169bd6A822FD12b9c1637d14Ff,0xCC1aC125D1852600495cdD67485c9DA68e7a18EF,0xD4f7d89B873D20188A27Bb665B2503C25B9542F3,0x41853543D35Ff75c4181529eD6AEd85c66231569,0xbA6E1C26bE2F8b46D9e7ab7573b99921Ee81AcF5,0x7F7A1EE3f132b2b0ef05422594191D845001a43A,0x91f060F6036f41Bf2A992a67e412aF1cCdDBD3dc
Arg [6] : shares (uint256[]): 5657,829,829,829,300,525,311,719

-----Encoded View---------------
28 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [2] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [3] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [4] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [8] : 68747470733a2f2f6170692e7a65666c6f726973742e636f6d2f666c6f776572
Arg [9] : 732f000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [11] : 000000000000000000000000dc062848a9a16857aa16f2b4ffd50c496957d3df
Arg [12] : 00000000000000000000000039d2db78b92176169bd6a822fd12b9c1637d14ff
Arg [13] : 000000000000000000000000cc1ac125d1852600495cdd67485c9da68e7a18ef
Arg [14] : 000000000000000000000000d4f7d89b873d20188a27bb665b2503c25b9542f3
Arg [15] : 00000000000000000000000041853543d35ff75c4181529ed6aed85c66231569
Arg [16] : 000000000000000000000000ba6e1c26be2f8b46d9e7ab7573b99921ee81acf5
Arg [17] : 0000000000000000000000007f7a1ee3f132b2b0ef05422594191d845001a43a
Arg [18] : 00000000000000000000000091f060f6036f41bf2a992a67e412af1ccddbd3dc
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [20] : 0000000000000000000000000000000000000000000000000000000000001619
Arg [21] : 000000000000000000000000000000000000000000000000000000000000033d
Arg [22] : 000000000000000000000000000000000000000000000000000000000000033d
Arg [23] : 000000000000000000000000000000000000000000000000000000000000033d
Arg [24] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [25] : 000000000000000000000000000000000000000000000000000000000000020d
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000137
Arg [27] : 00000000000000000000000000000000000000000000000000000000000002cf


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.