ETH Price: $2,269.46 (+0.20%)

Token

Dao Robotto (Dao Robotto)
 

Overview

Max Total Supply

953 Dao Robotto

Holders

289

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
malev.eth
Balance
3 Dao Robotto
0x7309e1582d611d3ef9dba6fce709f177240e0fd9
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:
DaoRobotto

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 13: Dao_Robotto.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract DaoRobotto is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string private _name;
  string private _symbol;
  uint256 internal MaxMintedtokenId = 0;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.08 ether;
  uint256 public maxSupply = 1000;
  uint256 public maxMintAmount = 20;
  uint256 public maxSupplyPerWallet = 10000;
  
  bool public paused = false;

  uint256 public NonOpenedTokenFromId = 0;

  bool public presale = true;
  
  bool public whitelistedAndMint = true;


  uint256 public whitelistMinCost = 0.08 ether;

  string public presaleURI = "http://23.254.217.117:5555/Dao_Robotto/DefaultFile.json";

  mapping(address => bool) public whitelisted;
  mapping(uint256 => string) public tokenPresaleURI;
  mapping(uint256 => bool) public TokenSaleBlacklist;

  bool public WhitelistOnlyFromOwner = true;

// address of Associated Contracts
  mapping(address => bool) public AssociatedContracts;
  uint256 public FusionCost = 0.0 ether;

address  Hito = 0xe3577D975F1359dF3dd186Cf4D2bB73FFFC2074c; // Community Wallet 
address  Seiiku = 0x7A4CF0CE8170421f5cc70F1102fCA9F0fe2aa28D; // Project development
address  Kifu = 0xa86BF12898Aea8Da994ba2903a86e5a9ee2F4232; // Team contribution


  constructor(
    string memory _initBaseURI
  ) ERC721("Dao Robotto", "Dao Robotto") {
      _symbol = "Dao Robotto";
      _name ="Dao Robotto";
    setBaseURI(_initBaseURI);
  }

    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(TokenSaleBlacklist[tokenId] == false, "Token in the Blacklist...");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner or approved");

        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(TokenSaleBlacklist[tokenId] == false, "Token in the Blacklist...");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner or approved");
        _safeTransfer(from, to, tokenId, _data);
    }

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public override view returns (string memory) {
      return _symbol;
    }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  
  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    require(!paused);
    require(_mintAmount > 0);
    
    require(MaxMintedtokenId + _mintAmount <= maxSupply);
    
    if (msg.sender != owner()) {

        uint256 WalletTokenCount = balanceOf(_to);
        require(WalletTokenCount + _mintAmount <= maxSupplyPerWallet);

        if(whitelisted[msg.sender] == true) {
            require(_mintAmount <= maxMintAmount);
            require(msg.value >= whitelistMinCost * _mintAmount);
        }
        else
        {
            require(_mintAmount <= maxMintAmount);
            require(msg.value >= cost * _mintAmount);
        }

    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
          _safeMint(_to, MaxMintedtokenId + 1);
          MaxMintedtokenId++;
          tokenPresaleURI[MaxMintedtokenId] = presaleURI;
    }
  }
  
  function mintWithwhitelisted(address _to, uint256 _mintAmount) public payable {
   
   if(whitelistedAndMint == true)
            whitelisted[msg.sender] = true;
            
    mint(_to, _mintAmount);
    
  }
  

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

    if(presale){
      return tokenPresaleURI[tokenId];
    }
    else if(NonOpenedTokenFromId > 0 && NonOpenedTokenFromId < tokenId){
      return tokenPresaleURI[tokenId];
    }
    else
    {
        string memory currentBaseURI = _baseURI();
        
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";    
    }

  }

//Burn and Fusion Functions

function burn(uint256 tokenId) public payable{

    if (msg.sender != owner()) {
        require(_isApprovedOrOwner(_msgSender(), tokenId) || AssociatedContracts[_msgSender()] == true, "Fusion: caller is not owner or approved");
    }
      _burn(tokenId);
    }
    
function ExternalFusion(uint256 tokenId, uint256 AttributeID) public payable{
      if (msg.sender != owner()) {
        require(_isApprovedOrOwner(_msgSender(), tokenId) || AssociatedContracts[_msgSender()] == true, "Fusion: caller is not owner or approved");
      }
    }

function Fusion(uint256 tokenId, uint256 AttributeID) public payable{
      if (msg.sender != owner()) {
        
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Fusion: caller is not owner or approved");
        require(_isApprovedOrOwner(_msgSender(), AttributeID), "Fusion: caller is not owner or approved");
        require(msg.value >= FusionCost);
      }
      else if (msg.sender == owner()){
        address tokrnOwner = ownerOf(tokenId);
        address AttributeOwner = ownerOf(AttributeID);

        require(tokrnOwner == AttributeOwner);
      }

      burn(AttributeID);
    }


function Fusion(uint256 tokenId, uint256 Attribute1ID, uint256 Attribute2ID) public payable{
      if (msg.sender != owner()) {
        
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Fusion: caller is not owner or approved");
        require(_isApprovedOrOwner(_msgSender(), Attribute1ID), "Fusion: caller is not owner or approved");
        require(_isApprovedOrOwner(_msgSender(), Attribute2ID), "Fusion: caller is not owner or approved");

        require(msg.value >= FusionCost);

      }
      else if (msg.sender == owner()){
        
        address tokrnOwner = ownerOf(tokenId);
        address Attribute1Owner = ownerOf(Attribute1ID);
        address Attribute2Owner = ownerOf(Attribute2ID);

        require(tokrnOwner == Attribute1Owner && tokrnOwner == Attribute2Owner);

      }

      burn(Attribute1ID);
      burn(Attribute2ID);
    }

function AssociatedFunktion(address Contract, uint256 tokenId, uint256 AttributeID) public payable{
    
    require(AssociatedContracts[Contract] == true, "Contract is not available");

    if (msg.sender != owner()) {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Fusion: caller is not owner or approved (TokenID)");
        address ContractAttributeIDOwner = ERC721(Contract).ownerOf(AttributeID);
        require(_msgSender() == ContractAttributeIDOwner, "Fusion: caller is not owner or approved (AttributeID)");
        require(msg.value >= FusionCost);
    }
    
     DaoRobotto(payable(Contract)).AssociatedFunktion(address(this), tokenId, AttributeID);    
    }



  //only owner
function setBlackList(uint256[] memory newTokenSaleBlacklist) public onlyOwner() {

    for (uint256 i; i < MaxMintedtokenId+1; i++) {
      TokenSaleBlacklist[i] = false;
    }

    for (uint256 i; i < newTokenSaleBlacklist.length+1; i++) {
      TokenSaleBlacklist[newTokenSaleBlacklist[i]] = true;
    }

  }

  function setName(string memory _newName) public onlyOwner() {
    _name = _newName;
  }

  function setSymbol(string memory newSymbol) public onlyOwner() {
    _symbol = newSymbol;
  }

  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }
  function setwhitelistMinCost(uint256 _newCost) public onlyOwner() {
    whitelistMinCost = _newCost;
  }

  function setFusionCost(uint256 _newCost) public onlyOwner() {
    FusionCost = _newCost;
  }

  function setmaxSupply(uint256 _newMaxSupply) public onlyOwner() {
    maxSupply = _newMaxSupply;
  }

  function setNonOpenedTokenFromId(uint256 _newNonOpenedTokenFromId) public onlyOwner() {
    NonOpenedTokenFromId = _newNonOpenedTokenFromId;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setmaxSupplyPerWallet(uint256 _newmaxSupplyPerWallet) public onlyOwner() {
    maxSupplyPerWallet = _newmaxSupplyPerWallet;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  
  function setpresaleURI(string memory _newPresaleURI) public onlyOwner {
    presaleURI = _newPresaleURI;
  }

  function setTokenPresaleURI(uint256 TokenId, string memory _newPresaleURI) public onlyOwner {
     tokenPresaleURI[TokenId] = _newPresaleURI;
  }
  
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setpresale(bool _state) public onlyOwner {
    presale = _state;
    
  }

  function whitelistUser(address _user) public {
    if(WhitelistOnlyFromOwner == true)
      require(msg.sender == owner());
    else if(msg.sender != owner())
      require(msg.sender == _user);

    whitelisted[_user] = true;
  }
  
   function removeWhitelistUser(address _user) public {
     if(WhitelistOnlyFromOwner == true)
      require(msg.sender == owner());
     else if(msg.sender != owner())
      require(msg.sender == _user);

      whitelisted[_user] = false;
  }

  function AddAssociatedContracts(address Contract) public onlyOwner{
    require(msg.sender == owner());
    AssociatedContracts[Contract] = true;
  }

  function removeAssociatedContracts(address Contract) public onlyOwner{
    require(msg.sender == owner());
    AssociatedContracts[Contract] = false;
  }

  function setwhitelistedAndMint(bool _state) public onlyOwner {
    whitelistedAndMint = _state; 
  }

  function setWhitelistOnlyFromOwner(bool _state) public onlyOwner {
    WhitelistOnlyFromOwner = _state; 
  }

  receive () external payable {
       
  }
  
  function withdraw() public onlyOwner{

        uint bal = address(this).balance;
        uint _1_Percent = bal  / 100  ; // 1/100 = 1%

        uint _33_ = _1_Percent * 33;
        uint _34_ = _1_Percent * 34;
        
        require(payable(Hito).send(_34_));
        require(payable(Seiiku).send(_33_));
        require(payable(Kifu).send(_33_));
        
  }

}

File 1 of 13: 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 4 of 13: 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 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 6 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: 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 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 10 of 13: 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 13: 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 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 13 of 13: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"Contract","type":"address"}],"name":"AddAssociatedContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AssociatedContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"Contract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"AttributeID","type":"uint256"}],"name":"AssociatedFunktion","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"AttributeID","type":"uint256"}],"name":"ExternalFusion","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"AttributeID","type":"uint256"}],"name":"Fusion","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"Attribute1ID","type":"uint256"},{"internalType":"uint256","name":"Attribute2ID","type":"uint256"}],"name":"Fusion","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"FusionCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NonOpenedTokenFromId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"TokenSaleBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistOnlyFromOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWithwhitelisted","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"Contract","type":"address"}],"name":"removeAssociatedContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"newTokenSaleBlacklist","type":"uint256[]"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setFusionCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNonOpenedTokenFromId","type":"uint256"}],"name":"setNonOpenedTokenFromId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"TokenId","type":"uint256"},{"internalType":"string","name":"_newPresaleURI","type":"string"}],"name":"setTokenPresaleURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistOnlyFromOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupplyPerWallet","type":"uint256"}],"name":"setmaxSupplyPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPresaleURI","type":"string"}],"name":"setpresaleURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setwhitelistMinCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setwhitelistedAndMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPresaleURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMinCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedAndMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6000600d5560c06040526005608081905264173539b7b760d91b60a09081526200002d91600f919062000307565b5067011c37937e08000060108190556103e860115560146012819055612710601355805460ff1916905560006015556016805461ffff19166101011790556017556040805160608101909152603780825262003ddf602083013980516200009d9160189160209091019062000307565b50601c805460ff191660011790556000601e55601f80546001600160a01b031990811673e3577d975f1359df3dd186cf4d2bb73fffc2074c17909155602080548216737a4cf0ce8170421f5cc70f1102fca9f0fe2aa28d1790556021805490911673a86bf12898aea8da994ba2903a86e5a9ee2f42321790553480156200012357600080fd5b5060405162003e1638038062003e168339810160408190526200014691620003ad565b604080518082018252600b8082526a44616f20526f626f74746f60a81b6020808401828152855180870190965292855284015281519192916200018c9160009162000307565b508051620001a290600190602084019062000307565b505050620001bf620001b96200023960201b60201c565b6200023d565b60408051808201909152600b8082526a44616f20526f626f74746f60a81b6020909201918252620001f391600c9162000307565b5060408051808201909152600b8082526a44616f20526f626f74746f60a81b602090920191825262000226918162000307565b5062000232816200028f565b50620004dc565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200030390600e90602084019062000307565b5050565b828054620003159062000489565b90600052602060002090601f01602090048101928262000339576000855562000384565b82601f106200035457805160ff191683800117855562000384565b8280016001018555821562000384579182015b828111156200038457825182559160200191906001019062000367565b506200039292915062000396565b5090565b5b8082111562000392576000815560010162000397565b60006020808385031215620003c157600080fd5b82516001600160401b0380821115620003d957600080fd5b818501915085601f830112620003ee57600080fd5b815181811115620004035762000403620004c6565b604051601f8201601f19908116603f011681019083821181831017156200042e576200042e620004c6565b8160405282815288868487010111156200044757600080fd5b600093505b828410156200046b57848401860151818501870152928501926200044c565b828411156200047d5760008684830101525b98975050505050505050565b600181811c908216806200049e57607f821691505b60208210811415620004c057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6138f380620004ec6000396000f3fe6080604052600436106103f35760003560e01c806351ab0dc711610208578063855f185d11610118578063c47f0027116100ab578063d936547e1161007a578063d936547e14610b4e578063da3ef23f14610b7e578063e985e9c514610b9e578063f2fde38b14610be7578063fdea8e0b14610c0757600080fd5b8063c47f002714610ae3578063c668286214610b03578063c87b56dd14610b18578063d5abeb0114610b3857600080fd5b8063a22cb465116100e7578063a22cb46514610a53578063ab7c217a14610a73578063b84c824614610aa3578063b88d4fde14610ac357600080fd5b8063855f185d146109ea5780638da5cb5b14610a0a57806395a2521014610a2857806395d89b4114610a3e57600080fd5b80636c0360eb1161019b578063736d878e1161016a578063736d878e1461094457806379833b84146109645780637f00c7a61461097a57806381a8b1c11461099a57806384f1bfa3146109ba57600080fd5b80636c0360eb146108e05780637042d648146108f557806370a082311461090f578063715018a61461092f57600080fd5b80635c975abb116101d75780635c975abb146108735780635d77f2651461088d5780636352211e146108ad5780636972e8f3146108cd57600080fd5b806351ab0dc71461080a57806354e0b3c31461081d57806355f804b3146108335780635b6a082c1461085357600080fd5b806330cc7ae01161030357806342842e0e116102965780634936207811610265578063493620781461076a57806349e2fd0d1461078a5780634a4c560d146107aa5780634f6ccce7146107ca5780635187a952146107ea57600080fd5b806342842e0e146106ea57806342966c681461070a578063438b63001461071d57806344a0d68a1461074a57600080fd5b80633ccfd60b116102d25780633ccfd60b1461068f5780633d843bb0146106a457806340c10f19146106c4578063423a297a146106d757600080fd5b806330cc7ae01461061c578063378286e71461063c57806339a5baf11461065c5780633c37b7531461066f57600080fd5b806318160ddd11610386578063239c70ae11610355578063239c70ae1461059057806323b872dd146105a65780632d93c4ef146105c65780632f745c59146105e65780632fed66621461060657600080fd5b806318160ddd1461052757806319d8155f1461053c5780632139db4c1461055b578063228025e81461057057600080fd5b8063095ea7b3116103c2578063095ea7b3146104b05780630d5bfcd8146104d05780631005e63c146104e357806313faede61461050357600080fd5b806301ffc9a7146103ff57806302329a291461043457806306fdde0314610456578063081812fc1461047857600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a36600461333c565b610c21565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b5061045461044f366004613321565b610c4c565b005b34801561046257600080fd5b5061046b610c92565b60405161042b91906135ca565b34801561048457600080fd5b506104986104933660046133ab565b610d24565b6040516001600160a01b03909116815260200161042b565b3480156104bc57600080fd5b506104546104cb366004613213565b610db9565b6104546104de36600461340b565b610ecf565b3480156104ef57600080fd5b506104546104fe366004613321565b610f9e565b34801561050f57600080fd5b5061051960105481565b60405190815260200161042b565b34801561053357600080fd5b50600854610519565b34801561054857600080fd5b5060165461041f90610100900460ff1681565b34801561056757600080fd5b5061046b610fdb565b34801561057c57600080fd5b5061045461058b3660046133ab565b611069565b34801561059c57600080fd5b5061051960125481565b3480156105b257600080fd5b506104546105c136600461311d565b611098565b3480156105d257600080fd5b506104546105e13660046130aa565b611123565b3480156105f257600080fd5b50610519610601366004613213565b611185565b34801561061257600080fd5b5061051960175481565b34801561062857600080fd5b506104546106373660046130aa565b61121b565b34801561064857600080fd5b506104546106573660046133ab565b61128f565b61045461066a36600461340b565b6112be565b34801561067b57600080fd5b5061045461068a366004613321565b611314565b34801561069b57600080fd5b50610454611358565b3480156106b057600080fd5b506104546106bf366004613376565b61144b565b6104546106d2366004613213565b611488565b6104546106e536600461342d565b6115e2565b3480156106f657600080fd5b5061045461070536600461311d565b611703565b6104546107183660046133ab565b61171e565b34801561072957600080fd5b5061073d6107383660046130aa565b611780565b60405161042b9190613586565b34801561075657600080fd5b506104546107653660046133ab565b611822565b34801561077657600080fd5b506104546107853660046133ab565b611851565b34801561079657600080fd5b506104546107a53660046133ab565b611880565b3480156107b657600080fd5b506104546107c53660046130aa565b6118af565b3480156107d657600080fd5b506105196107e53660046133ab565b611926565b3480156107f657600080fd5b50610454610805366004613274565b6119b9565b610454610818366004613213565b611a93565b34801561082957600080fd5b50610519601e5481565b34801561083f57600080fd5b5061045461084e366004613376565b611ace565b34801561085f57600080fd5b5061045461086e3660046133c4565b611b0b565b34801561087f57600080fd5b5060145461041f9060ff1681565b34801561089957600080fd5b506104546108a8366004613321565b611b54565b3480156108b957600080fd5b506104986108c83660046133ab565b611b91565b6104546108db36600461323f565b611c08565b3480156108ec57600080fd5b5061046b611e66565b34801561090157600080fd5b50601c5461041f9060ff1681565b34801561091b57600080fd5b5061051961092a3660046130aa565b611e73565b34801561093b57600080fd5b50610454611efa565b34801561095057600080fd5b5061045461095f3660046130aa565b611f30565b34801561097057600080fd5b5061051960155481565b34801561098657600080fd5b506104546109953660046133ab565b611f95565b3480156109a657600080fd5b506104546109b53660046133ab565b611fc4565b3480156109c657600080fd5b5061041f6109d53660046130aa565b601d6020526000908152604090205460ff1681565b3480156109f657600080fd5b5061046b610a053660046133ab565b611ff3565b348015610a1657600080fd5b50600a546001600160a01b0316610498565b348015610a3457600080fd5b5061051960135481565b348015610a4a57600080fd5b5061046b61200c565b348015610a5f57600080fd5b50610454610a6e3660046131de565b61201b565b348015610a7f57600080fd5b5061041f610a8e3660046133ab565b601b6020526000908152604090205460ff1681565b348015610aaf57600080fd5b50610454610abe366004613376565b6120e0565b348015610acf57600080fd5b50610454610ade36600461315e565b61211d565b348015610aef57600080fd5b50610454610afe366004613376565b6121a9565b348015610b0f57600080fd5b5061046b6121e6565b348015610b2457600080fd5b5061046b610b333660046133ab565b6121f3565b348015610b4457600080fd5b5061051960115481565b348015610b5a57600080fd5b5061041f610b693660046130aa565b60196020526000908152604090205460ff1681565b348015610b8a57600080fd5b50610454610b99366004613376565b6123b0565b348015610baa57600080fd5b5061041f610bb93660046130e4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610bf357600080fd5b50610454610c023660046130aa565b6123ed565b348015610c1357600080fd5b5060165461041f9060ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610c465750610c4682612485565b92915050565b600a546001600160a01b03163314610c7f5760405162461bcd60e51b8152600401610c769061362f565b60405180910390fd5b6014805460ff1916911515919091179055565b6060600b8054610ca1906137ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd906137ba565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c76565b506000908152600460205260409020546001600160a01b031690565b6000610dc482611b91565b9050806001600160a01b0316836001600160a01b03161415610e325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c76565b336001600160a01b0382161480610e4e5750610e4e8133610bb9565b610ec05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c76565b610eca83836124d5565b505050565b600a546001600160a01b03163314610f4357610eec335b83612543565b610f085760405162461bcd60e51b8152600401610c7690613664565b610f13335b82612543565b610f2f5760405162461bcd60e51b8152600401610c7690613664565b601e54341015610f3e57600080fd5b610f91565b600a546001600160a01b0316331415610f91576000610f6183611b91565b90506000610f6e83611b91565b9050806001600160a01b0316826001600160a01b031614610f8e57600080fd5b50505b610f9a8161171e565b5050565b600a546001600160a01b03163314610fc85760405162461bcd60e51b8152600401610c769061362f565b6016805460ff1916911515919091179055565b60188054610fe8906137ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611014906137ba565b80156110615780601f1061103657610100808354040283529160200191611061565b820191906000526020600020905b81548152906001019060200180831161104457829003601f168201915b505050505081565b600a546001600160a01b031633146110935760405162461bcd60e51b8152600401610c769061362f565b601155565b6000818152601b602052604090205460ff16156110f35760405162461bcd60e51b81526020600482015260196024820152782a37b5b2b71034b7103a343290213630b1b5b634b9ba17171760391b6044820152606401610c76565b6110fc33610f0d565b6111185760405162461bcd60e51b8152600401610c76906136ab565b610eca83838361263a565b600a546001600160a01b0316331461114d5760405162461bcd60e51b8152600401610c769061362f565b600a546001600160a01b0316331461116457600080fd5b6001600160a01b03166000908152601d60205260409020805460ff19169055565b600061119083611e73565b82106111f25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c76565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601c5460ff1615156001141561124757600a546001600160a01b0316331461124257600080fd5b61126e565b600a546001600160a01b0316331461126e57336001600160a01b0382161461126e57600080fd5b6001600160a01b03166000908152601960205260409020805460ff19169055565b600a546001600160a01b031633146112b95760405162461bcd60e51b8152600401610c769061362f565b601555565b600a546001600160a01b03163314610f9a576112d933610ee6565b806112f85750336000908152601d602052604090205460ff1615156001145b610f9a5760405162461bcd60e51b8152600401610c7690613664565b600a546001600160a01b0316331461133e5760405162461bcd60e51b8152600401610c769061362f565b601680549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146113825760405162461bcd60e51b8152600401610c769061362f565b476000611390606483613744565b9050600061139f826021613758565b905060006113ae836022613758565b601f546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050506113e157600080fd5b6020546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505061141357600080fd5b6021546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505061144557600080fd5b50505050565b600a546001600160a01b031633146114755760405162461bcd60e51b8152600401610c769061362f565b8051610f9a906018906020840190612f0e565b60145460ff161561149857600080fd5b600081116114a557600080fd5b60115481600d546114b6919061372c565b11156114c157600080fd5b600a546001600160a01b0316331461156f5760006114de83611e73565b6013549091506114ee838361372c565b11156114f957600080fd5b3360009081526019602052604090205460ff161515600114156115445760125482111561152557600080fd5b816017546115339190613758565b34101561153f57600080fd5b61156d565b60125482111561155357600080fd5b816010546115619190613758565b34101561156d57600080fd5b505b60015b818111610eca5761159183600d54600161158c919061372c565b6127e5565b600d80549060006115a1836137f5565b9091555050600d546000908152601a60205260409020601880546115c4906137ba565b6115cf929190612f92565b50806115da816137f5565b915050611572565b600a546001600160a01b03163314611678576115fe3384612543565b61161a5760405162461bcd60e51b8152600401610c7690613664565b61162333610ee6565b61163f5760405162461bcd60e51b8152600401610c7690613664565b61164833610f0d565b6116645760405162461bcd60e51b8152600401610c7690613664565b601e5434101561167357600080fd5b6116f1565b600a546001600160a01b03163314156116f157600061169684611b91565b905060006116a384611b91565b905060006116b084611b91565b9050816001600160a01b0316836001600160a01b03161480156116e45750806001600160a01b0316836001600160a01b0316145b6116ed57600080fd5b5050505b6116fa8261171e565b610eca8161171e565b610eca8383836040518060200160405280600081525061211d565b600a546001600160a01b031633146117745761173933610f0d565b806117585750336000908152601d602052604090205460ff1615156001145b6117745760405162461bcd60e51b8152600401610c7690613664565b61177d816127ff565b50565b6060600061178d83611e73565b905060008167ffffffffffffffff8111156117aa576117aa61387c565b6040519080825280602002602001820160405280156117d3578160200160208202803683370190505b50905060005b8281101561181a576117eb8582611185565b8282815181106117fd576117fd613866565b602090810291909101015280611812816137f5565b9150506117d9565b509392505050565b600a546001600160a01b0316331461184c5760405162461bcd60e51b8152600401610c769061362f565b601055565b600a546001600160a01b0316331461187b5760405162461bcd60e51b8152600401610c769061362f565b601755565b600a546001600160a01b031633146118aa5760405162461bcd60e51b8152600401610c769061362f565b601e55565b601c5460ff161515600114156118db57600a546001600160a01b031633146118d657600080fd5b611902565b600a546001600160a01b0316331461190257336001600160a01b0382161461190257600080fd5b6001600160a01b03166000908152601960205260409020805460ff19166001179055565b600061193160085490565b82106119945760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c76565b600882815481106119a7576119a7613866565b90600052602060002001549050919050565b600a546001600160a01b031633146119e35760405162461bcd60e51b8152600401610c769061362f565b60005b600d546119f490600161372c565b811015611a23576000818152601b60205260409020805460ff1916905580611a1b816137f5565b9150506119e6565b5060005b8151611a3490600161372c565b811015610f9a576001601b6000848481518110611a5357611a53613866565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611a8b906137f5565b915050611a27565b60165460ff61010090910416151560011415611ac457336000908152601960205260409020805460ff191660011790555b610f9a8282611488565b600a546001600160a01b03163314611af85760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600e906020840190612f0e565b600a546001600160a01b03163314611b355760405162461bcd60e51b8152600401610c769061362f565b6000828152601a602090815260409091208251610eca92840190612f0e565b600a546001600160a01b03163314611b7e5760405162461bcd60e51b8152600401610c769061362f565b601c805460ff1916911515919091179055565b6000818152600260205260408120546001600160a01b031680610c465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c76565b6001600160a01b0383166000908152601d602052604090205460ff161515600114611c755760405162461bcd60e51b815260206004820152601960248201527f436f6e7472616374206973206e6f7420617661696c61626c65000000000000006044820152606401610c76565b600a546001600160a01b03163314611dfa57611c9033610ee6565b611cf65760405162461bcd60e51b815260206004820152603160248201527f467573696f6e3a2063616c6c6572206973206e6f74206f776e6572206f7220616044820152707070726f7665642028546f6b656e49442960781b6064820152608401610c76565b6040516331a9108f60e11b8152600481018290526000906001600160a01b03851690636352211e9060240160206040518083038186803b158015611d3957600080fd5b505afa158015611d4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7191906130c7565b9050336001600160a01b03821614611de95760405162461bcd60e51b815260206004820152603560248201527f467573696f6e3a2063616c6c6572206973206e6f74206f776e6572206f7220616044820152747070726f766564202841747472696275746549442960581b6064820152608401610c76565b601e54341015611df857600080fd5b505b604051636972e8f360e01b815230600482015260248101839052604481018290526001600160a01b03841690636972e8f390606401600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b50505050505050565b600e8054610fe8906137ba565b60006001600160a01b038216611ede5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c76565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611f245760405162461bcd60e51b8152600401610c769061362f565b611f2e60006128a6565b565b600a546001600160a01b03163314611f5a5760405162461bcd60e51b8152600401610c769061362f565b600a546001600160a01b03163314611f7157600080fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b600a546001600160a01b03163314611fbf5760405162461bcd60e51b8152600401610c769061362f565b601255565b600a546001600160a01b03163314611fee5760405162461bcd60e51b8152600401610c769061362f565b601355565b601a6020526000908152604090208054610fe8906137ba565b6060600c8054610ca1906137ba565b6001600160a01b0382163314156120745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c76565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461210a5760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600c906020840190612f0e565b6000828152601b602052604090205460ff16156121785760405162461bcd60e51b81526020600482015260196024820152782a37b5b2b71034b7103a343290213630b1b5b634b9ba17171760391b6044820152606401610c76565b61218133610ee6565b61219d5760405162461bcd60e51b8152600401610c76906136ab565b611445848484846128f8565b600a546001600160a01b031633146121d35760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600b906020840190612f0e565b600f8054610fe8906137ba565b6000818152600260205260409020546060906001600160a01b03166122725760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c76565b60165460ff161561231b576000828152601a602052604090208054612296906137ba565b80601f01602080910402602001604051908101604052809291908181526020018280546122c2906137ba565b801561230f5780601f106122e45761010080835404028352916020019161230f565b820191906000526020600020905b8154815290600101906020018083116122f257829003601f168201915b50505050509050919050565b600060155411801561232e575081601554105b1561234c576000828152601a602052604090208054612296906137ba565b600061235661292b565b9050600081511161237657604051806020016040528060008152506123a4565b806123808461293a565b600f60405160200161239493929190613485565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146123da5760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600f906020840190612f0e565b600a546001600160a01b031633146124175760405162461bcd60e51b8152600401610c769061362f565b6001600160a01b03811661247c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c76565b61177d816128a6565b60006001600160e01b031982166380ac58cd60e01b14806124b657506001600160e01b03198216635b5e139f60e01b145b80610c4657506301ffc9a760e01b6001600160e01b0319831614610c46565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061250a82611b91565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166125bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c76565b60006125c783611b91565b9050806001600160a01b0316846001600160a01b031614806126025750836001600160a01b03166125f784610d24565b6001600160a01b0316145b8061263257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661264d82611b91565b6001600160a01b0316146126b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c76565b6001600160a01b0382166127175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c76565b612722838383612a38565b61272d6000826124d5565b6001600160a01b0383166000908152600360205260408120805460019290612756908490613777565b90915550506001600160a01b038216600090815260036020526040812080546001929061278490849061372c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f9a828260405180602001604052806000815250612af0565b600061280a82611b91565b905061281881600084612a38565b6128236000836124d5565b6001600160a01b038116600090815260036020526040812080546001929061284c908490613777565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61290384848461263a565b61290f84848484612b23565b6114455760405162461bcd60e51b8152600401610c76906135dd565b6060600e8054610ca1906137ba565b60608161295e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129885780612972816137f5565b91506129819050600a83613744565b9150612962565b60008167ffffffffffffffff8111156129a3576129a361387c565b6040519080825280601f01601f1916602001820160405280156129cd576020820181803683370190505b5090505b8415612632576129e2600183613777565b91506129ef600a86613810565b6129fa90603061372c565b60f81b818381518110612a0f57612a0f613866565b60200101906001600160f81b031916908160001a905350612a31600a86613744565b94506129d1565b6001600160a01b038316612a9357612a8e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ab6565b816001600160a01b0316836001600160a01b031614612ab657612ab68382612c30565b6001600160a01b038216612acd57610eca81612ccd565b826001600160a01b0316826001600160a01b031614610eca57610eca8282612d7c565b612afa8383612dc0565b612b076000848484612b23565b610eca5760405162461bcd60e51b8152600401610c76906135dd565b60006001600160a01b0384163b15612c2557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b67903390899088908890600401613549565b602060405180830381600087803b158015612b8157600080fd5b505af1925050508015612bb1575060408051601f3d908101601f19168201909252612bae91810190613359565b60015b612c0b573d808015612bdf576040519150601f19603f3d011682016040523d82523d6000602084013e612be4565b606091505b508051612c035760405162461bcd60e51b8152600401610c76906135dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612632565b506001949350505050565b60006001612c3d84611e73565b612c479190613777565b600083815260076020526040902054909150808214612c9a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612cdf90600190613777565b60008381526009602052604081205460088054939450909284908110612d0757612d07613866565b906000526020600020015490508060088381548110612d2857612d28613866565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612d6057612d60613850565b6001900381819060005260206000200160009055905550505050565b6000612d8783611e73565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612e165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c76565b6000818152600260205260409020546001600160a01b031615612e7b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c76565b612e8760008383612a38565b6001600160a01b0382166000908152600360205260408120805460019290612eb090849061372c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612f1a906137ba565b90600052602060002090601f016020900481019282612f3c5760008555612f82565b82601f10612f5557805160ff1916838001178555612f82565b82800160010185558215612f82579182015b82811115612f82578251825591602001919060010190612f67565b50612f8e92915061300d565b5090565b828054612f9e906137ba565b90600052602060002090601f016020900481019282612fc05760008555612f82565b82601f10612fd15780548555612f82565b82800160010185558215612f8257600052602060002091601f016020900482015b82811115612f82578254825591600101919060010190612ff2565b5b80821115612f8e576000815560010161300e565b600067ffffffffffffffff83111561303c5761303c61387c565b61304f601f8401601f19166020016136fb565b905082815283838301111561306357600080fd5b828260208301376000602084830101529392505050565b803580151581146123ab57600080fd5b600082601f83011261309b57600080fd5b6123a483833560208501613022565b6000602082840312156130bc57600080fd5b81356123a481613892565b6000602082840312156130d957600080fd5b81516123a481613892565b600080604083850312156130f757600080fd5b823561310281613892565b9150602083013561311281613892565b809150509250929050565b60008060006060848603121561313257600080fd5b833561313d81613892565b9250602084013561314d81613892565b929592945050506040919091013590565b6000806000806080858703121561317457600080fd5b843561317f81613892565b9350602085013561318f81613892565b925060408501359150606085013567ffffffffffffffff8111156131b257600080fd5b8501601f810187136131c357600080fd5b6131d287823560208401613022565b91505092959194509250565b600080604083850312156131f157600080fd5b82356131fc81613892565b915061320a6020840161307a565b90509250929050565b6000806040838503121561322657600080fd5b823561323181613892565b946020939093013593505050565b60008060006060848603121561325457600080fd5b833561325f81613892565b95602085013595506040909401359392505050565b6000602080838503121561328757600080fd5b823567ffffffffffffffff8082111561329f57600080fd5b818501915085601f8301126132b357600080fd5b8135818111156132c5576132c561387c565b8060051b91506132d68483016136fb565b8181528481019084860184860187018a10156132f157600080fd5b600095505b838610156133145780358352600195909501949186019186016132f6565b5098975050505050505050565b60006020828403121561333357600080fd5b6123a48261307a565b60006020828403121561334e57600080fd5b81356123a4816138a7565b60006020828403121561336b57600080fd5b81516123a4816138a7565b60006020828403121561338857600080fd5b813567ffffffffffffffff81111561339f57600080fd5b6126328482850161308a565b6000602082840312156133bd57600080fd5b5035919050565b600080604083850312156133d757600080fd5b82359150602083013567ffffffffffffffff8111156133f557600080fd5b6134018582860161308a565b9150509250929050565b6000806040838503121561341e57600080fd5b50508035926020909101359150565b60008060006060848603121561344257600080fd5b505081359360208301359350604090920135919050565b6000815180845261347181602086016020860161378e565b601f01601f19169290920160200192915050565b6000845160206134988285838a0161378e565b8551918401916134ab8184848a0161378e565b8554920191600090600181811c90808316806134c857607f831692505b8583108114156134e657634e487b7160e01b85526022600452602485fd5b8080156134fa576001811461350b57613538565b60ff19851688528388019550613538565b60008b81526020902060005b858110156135305781548a820152908401908801613517565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061357c90830184613459565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135be578351835292840192918401916001016135a2565b50909695505050505050565b6020815260006123a46020830184613459565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f467573696f6e3a2063616c6c6572206973206e6f74206f776e6572206f7220616040820152661c1c1c9bdd995960ca1b606082015260800190565b60208082526030908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201526f1ddb995c881bdc88185c1c1c9bdd995960821b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156137245761372461387c565b604052919050565b6000821982111561373f5761373f613824565b500190565b6000826137535761375361383a565b500490565b600081600019048311821515161561377257613772613824565b500290565b60008282101561378957613789613824565b500390565b60005b838110156137a9578181015183820152602001613791565b838111156114455750506000910152565b600181811c908216806137ce57607f821691505b602082108114156137ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561380957613809613824565b5060010190565b60008261381f5761381f61383a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461177d57600080fd5b6001600160e01b03198116811461177d57600080fdfea26469706673582212200821347ab4fdbbc64294d6b0c2a441da49a317168a3b76ce46899de982db4cef64736f6c63430008070033687474703a2f2f32332e3235342e3231372e3131373a353535352f44616f5f526f626f74746f2f44656661756c7446696c652e6a736f6e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046e6f6e6500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103f35760003560e01c806351ab0dc711610208578063855f185d11610118578063c47f0027116100ab578063d936547e1161007a578063d936547e14610b4e578063da3ef23f14610b7e578063e985e9c514610b9e578063f2fde38b14610be7578063fdea8e0b14610c0757600080fd5b8063c47f002714610ae3578063c668286214610b03578063c87b56dd14610b18578063d5abeb0114610b3857600080fd5b8063a22cb465116100e7578063a22cb46514610a53578063ab7c217a14610a73578063b84c824614610aa3578063b88d4fde14610ac357600080fd5b8063855f185d146109ea5780638da5cb5b14610a0a57806395a2521014610a2857806395d89b4114610a3e57600080fd5b80636c0360eb1161019b578063736d878e1161016a578063736d878e1461094457806379833b84146109645780637f00c7a61461097a57806381a8b1c11461099a57806384f1bfa3146109ba57600080fd5b80636c0360eb146108e05780637042d648146108f557806370a082311461090f578063715018a61461092f57600080fd5b80635c975abb116101d75780635c975abb146108735780635d77f2651461088d5780636352211e146108ad5780636972e8f3146108cd57600080fd5b806351ab0dc71461080a57806354e0b3c31461081d57806355f804b3146108335780635b6a082c1461085357600080fd5b806330cc7ae01161030357806342842e0e116102965780634936207811610265578063493620781461076a57806349e2fd0d1461078a5780634a4c560d146107aa5780634f6ccce7146107ca5780635187a952146107ea57600080fd5b806342842e0e146106ea57806342966c681461070a578063438b63001461071d57806344a0d68a1461074a57600080fd5b80633ccfd60b116102d25780633ccfd60b1461068f5780633d843bb0146106a457806340c10f19146106c4578063423a297a146106d757600080fd5b806330cc7ae01461061c578063378286e71461063c57806339a5baf11461065c5780633c37b7531461066f57600080fd5b806318160ddd11610386578063239c70ae11610355578063239c70ae1461059057806323b872dd146105a65780632d93c4ef146105c65780632f745c59146105e65780632fed66621461060657600080fd5b806318160ddd1461052757806319d8155f1461053c5780632139db4c1461055b578063228025e81461057057600080fd5b8063095ea7b3116103c2578063095ea7b3146104b05780630d5bfcd8146104d05780631005e63c146104e357806313faede61461050357600080fd5b806301ffc9a7146103ff57806302329a291461043457806306fdde0314610456578063081812fc1461047857600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a36600461333c565b610c21565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b5061045461044f366004613321565b610c4c565b005b34801561046257600080fd5b5061046b610c92565b60405161042b91906135ca565b34801561048457600080fd5b506104986104933660046133ab565b610d24565b6040516001600160a01b03909116815260200161042b565b3480156104bc57600080fd5b506104546104cb366004613213565b610db9565b6104546104de36600461340b565b610ecf565b3480156104ef57600080fd5b506104546104fe366004613321565b610f9e565b34801561050f57600080fd5b5061051960105481565b60405190815260200161042b565b34801561053357600080fd5b50600854610519565b34801561054857600080fd5b5060165461041f90610100900460ff1681565b34801561056757600080fd5b5061046b610fdb565b34801561057c57600080fd5b5061045461058b3660046133ab565b611069565b34801561059c57600080fd5b5061051960125481565b3480156105b257600080fd5b506104546105c136600461311d565b611098565b3480156105d257600080fd5b506104546105e13660046130aa565b611123565b3480156105f257600080fd5b50610519610601366004613213565b611185565b34801561061257600080fd5b5061051960175481565b34801561062857600080fd5b506104546106373660046130aa565b61121b565b34801561064857600080fd5b506104546106573660046133ab565b61128f565b61045461066a36600461340b565b6112be565b34801561067b57600080fd5b5061045461068a366004613321565b611314565b34801561069b57600080fd5b50610454611358565b3480156106b057600080fd5b506104546106bf366004613376565b61144b565b6104546106d2366004613213565b611488565b6104546106e536600461342d565b6115e2565b3480156106f657600080fd5b5061045461070536600461311d565b611703565b6104546107183660046133ab565b61171e565b34801561072957600080fd5b5061073d6107383660046130aa565b611780565b60405161042b9190613586565b34801561075657600080fd5b506104546107653660046133ab565b611822565b34801561077657600080fd5b506104546107853660046133ab565b611851565b34801561079657600080fd5b506104546107a53660046133ab565b611880565b3480156107b657600080fd5b506104546107c53660046130aa565b6118af565b3480156107d657600080fd5b506105196107e53660046133ab565b611926565b3480156107f657600080fd5b50610454610805366004613274565b6119b9565b610454610818366004613213565b611a93565b34801561082957600080fd5b50610519601e5481565b34801561083f57600080fd5b5061045461084e366004613376565b611ace565b34801561085f57600080fd5b5061045461086e3660046133c4565b611b0b565b34801561087f57600080fd5b5060145461041f9060ff1681565b34801561089957600080fd5b506104546108a8366004613321565b611b54565b3480156108b957600080fd5b506104986108c83660046133ab565b611b91565b6104546108db36600461323f565b611c08565b3480156108ec57600080fd5b5061046b611e66565b34801561090157600080fd5b50601c5461041f9060ff1681565b34801561091b57600080fd5b5061051961092a3660046130aa565b611e73565b34801561093b57600080fd5b50610454611efa565b34801561095057600080fd5b5061045461095f3660046130aa565b611f30565b34801561097057600080fd5b5061051960155481565b34801561098657600080fd5b506104546109953660046133ab565b611f95565b3480156109a657600080fd5b506104546109b53660046133ab565b611fc4565b3480156109c657600080fd5b5061041f6109d53660046130aa565b601d6020526000908152604090205460ff1681565b3480156109f657600080fd5b5061046b610a053660046133ab565b611ff3565b348015610a1657600080fd5b50600a546001600160a01b0316610498565b348015610a3457600080fd5b5061051960135481565b348015610a4a57600080fd5b5061046b61200c565b348015610a5f57600080fd5b50610454610a6e3660046131de565b61201b565b348015610a7f57600080fd5b5061041f610a8e3660046133ab565b601b6020526000908152604090205460ff1681565b348015610aaf57600080fd5b50610454610abe366004613376565b6120e0565b348015610acf57600080fd5b50610454610ade36600461315e565b61211d565b348015610aef57600080fd5b50610454610afe366004613376565b6121a9565b348015610b0f57600080fd5b5061046b6121e6565b348015610b2457600080fd5b5061046b610b333660046133ab565b6121f3565b348015610b4457600080fd5b5061051960115481565b348015610b5a57600080fd5b5061041f610b693660046130aa565b60196020526000908152604090205460ff1681565b348015610b8a57600080fd5b50610454610b99366004613376565b6123b0565b348015610baa57600080fd5b5061041f610bb93660046130e4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610bf357600080fd5b50610454610c023660046130aa565b6123ed565b348015610c1357600080fd5b5060165461041f9060ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610c465750610c4682612485565b92915050565b600a546001600160a01b03163314610c7f5760405162461bcd60e51b8152600401610c769061362f565b60405180910390fd5b6014805460ff1916911515919091179055565b6060600b8054610ca1906137ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd906137ba565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c76565b506000908152600460205260409020546001600160a01b031690565b6000610dc482611b91565b9050806001600160a01b0316836001600160a01b03161415610e325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c76565b336001600160a01b0382161480610e4e5750610e4e8133610bb9565b610ec05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c76565b610eca83836124d5565b505050565b600a546001600160a01b03163314610f4357610eec335b83612543565b610f085760405162461bcd60e51b8152600401610c7690613664565b610f13335b82612543565b610f2f5760405162461bcd60e51b8152600401610c7690613664565b601e54341015610f3e57600080fd5b610f91565b600a546001600160a01b0316331415610f91576000610f6183611b91565b90506000610f6e83611b91565b9050806001600160a01b0316826001600160a01b031614610f8e57600080fd5b50505b610f9a8161171e565b5050565b600a546001600160a01b03163314610fc85760405162461bcd60e51b8152600401610c769061362f565b6016805460ff1916911515919091179055565b60188054610fe8906137ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611014906137ba565b80156110615780601f1061103657610100808354040283529160200191611061565b820191906000526020600020905b81548152906001019060200180831161104457829003601f168201915b505050505081565b600a546001600160a01b031633146110935760405162461bcd60e51b8152600401610c769061362f565b601155565b6000818152601b602052604090205460ff16156110f35760405162461bcd60e51b81526020600482015260196024820152782a37b5b2b71034b7103a343290213630b1b5b634b9ba17171760391b6044820152606401610c76565b6110fc33610f0d565b6111185760405162461bcd60e51b8152600401610c76906136ab565b610eca83838361263a565b600a546001600160a01b0316331461114d5760405162461bcd60e51b8152600401610c769061362f565b600a546001600160a01b0316331461116457600080fd5b6001600160a01b03166000908152601d60205260409020805460ff19169055565b600061119083611e73565b82106111f25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c76565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601c5460ff1615156001141561124757600a546001600160a01b0316331461124257600080fd5b61126e565b600a546001600160a01b0316331461126e57336001600160a01b0382161461126e57600080fd5b6001600160a01b03166000908152601960205260409020805460ff19169055565b600a546001600160a01b031633146112b95760405162461bcd60e51b8152600401610c769061362f565b601555565b600a546001600160a01b03163314610f9a576112d933610ee6565b806112f85750336000908152601d602052604090205460ff1615156001145b610f9a5760405162461bcd60e51b8152600401610c7690613664565b600a546001600160a01b0316331461133e5760405162461bcd60e51b8152600401610c769061362f565b601680549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146113825760405162461bcd60e51b8152600401610c769061362f565b476000611390606483613744565b9050600061139f826021613758565b905060006113ae836022613758565b601f546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050506113e157600080fd5b6020546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505061141357600080fd5b6021546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505061144557600080fd5b50505050565b600a546001600160a01b031633146114755760405162461bcd60e51b8152600401610c769061362f565b8051610f9a906018906020840190612f0e565b60145460ff161561149857600080fd5b600081116114a557600080fd5b60115481600d546114b6919061372c565b11156114c157600080fd5b600a546001600160a01b0316331461156f5760006114de83611e73565b6013549091506114ee838361372c565b11156114f957600080fd5b3360009081526019602052604090205460ff161515600114156115445760125482111561152557600080fd5b816017546115339190613758565b34101561153f57600080fd5b61156d565b60125482111561155357600080fd5b816010546115619190613758565b34101561156d57600080fd5b505b60015b818111610eca5761159183600d54600161158c919061372c565b6127e5565b600d80549060006115a1836137f5565b9091555050600d546000908152601a60205260409020601880546115c4906137ba565b6115cf929190612f92565b50806115da816137f5565b915050611572565b600a546001600160a01b03163314611678576115fe3384612543565b61161a5760405162461bcd60e51b8152600401610c7690613664565b61162333610ee6565b61163f5760405162461bcd60e51b8152600401610c7690613664565b61164833610f0d565b6116645760405162461bcd60e51b8152600401610c7690613664565b601e5434101561167357600080fd5b6116f1565b600a546001600160a01b03163314156116f157600061169684611b91565b905060006116a384611b91565b905060006116b084611b91565b9050816001600160a01b0316836001600160a01b03161480156116e45750806001600160a01b0316836001600160a01b0316145b6116ed57600080fd5b5050505b6116fa8261171e565b610eca8161171e565b610eca8383836040518060200160405280600081525061211d565b600a546001600160a01b031633146117745761173933610f0d565b806117585750336000908152601d602052604090205460ff1615156001145b6117745760405162461bcd60e51b8152600401610c7690613664565b61177d816127ff565b50565b6060600061178d83611e73565b905060008167ffffffffffffffff8111156117aa576117aa61387c565b6040519080825280602002602001820160405280156117d3578160200160208202803683370190505b50905060005b8281101561181a576117eb8582611185565b8282815181106117fd576117fd613866565b602090810291909101015280611812816137f5565b9150506117d9565b509392505050565b600a546001600160a01b0316331461184c5760405162461bcd60e51b8152600401610c769061362f565b601055565b600a546001600160a01b0316331461187b5760405162461bcd60e51b8152600401610c769061362f565b601755565b600a546001600160a01b031633146118aa5760405162461bcd60e51b8152600401610c769061362f565b601e55565b601c5460ff161515600114156118db57600a546001600160a01b031633146118d657600080fd5b611902565b600a546001600160a01b0316331461190257336001600160a01b0382161461190257600080fd5b6001600160a01b03166000908152601960205260409020805460ff19166001179055565b600061193160085490565b82106119945760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c76565b600882815481106119a7576119a7613866565b90600052602060002001549050919050565b600a546001600160a01b031633146119e35760405162461bcd60e51b8152600401610c769061362f565b60005b600d546119f490600161372c565b811015611a23576000818152601b60205260409020805460ff1916905580611a1b816137f5565b9150506119e6565b5060005b8151611a3490600161372c565b811015610f9a576001601b6000848481518110611a5357611a53613866565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611a8b906137f5565b915050611a27565b60165460ff61010090910416151560011415611ac457336000908152601960205260409020805460ff191660011790555b610f9a8282611488565b600a546001600160a01b03163314611af85760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600e906020840190612f0e565b600a546001600160a01b03163314611b355760405162461bcd60e51b8152600401610c769061362f565b6000828152601a602090815260409091208251610eca92840190612f0e565b600a546001600160a01b03163314611b7e5760405162461bcd60e51b8152600401610c769061362f565b601c805460ff1916911515919091179055565b6000818152600260205260408120546001600160a01b031680610c465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c76565b6001600160a01b0383166000908152601d602052604090205460ff161515600114611c755760405162461bcd60e51b815260206004820152601960248201527f436f6e7472616374206973206e6f7420617661696c61626c65000000000000006044820152606401610c76565b600a546001600160a01b03163314611dfa57611c9033610ee6565b611cf65760405162461bcd60e51b815260206004820152603160248201527f467573696f6e3a2063616c6c6572206973206e6f74206f776e6572206f7220616044820152707070726f7665642028546f6b656e49442960781b6064820152608401610c76565b6040516331a9108f60e11b8152600481018290526000906001600160a01b03851690636352211e9060240160206040518083038186803b158015611d3957600080fd5b505afa158015611d4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7191906130c7565b9050336001600160a01b03821614611de95760405162461bcd60e51b815260206004820152603560248201527f467573696f6e3a2063616c6c6572206973206e6f74206f776e6572206f7220616044820152747070726f766564202841747472696275746549442960581b6064820152608401610c76565b601e54341015611df857600080fd5b505b604051636972e8f360e01b815230600482015260248101839052604481018290526001600160a01b03841690636972e8f390606401600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b50505050505050565b600e8054610fe8906137ba565b60006001600160a01b038216611ede5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c76565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611f245760405162461bcd60e51b8152600401610c769061362f565b611f2e60006128a6565b565b600a546001600160a01b03163314611f5a5760405162461bcd60e51b8152600401610c769061362f565b600a546001600160a01b03163314611f7157600080fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b600a546001600160a01b03163314611fbf5760405162461bcd60e51b8152600401610c769061362f565b601255565b600a546001600160a01b03163314611fee5760405162461bcd60e51b8152600401610c769061362f565b601355565b601a6020526000908152604090208054610fe8906137ba565b6060600c8054610ca1906137ba565b6001600160a01b0382163314156120745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c76565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461210a5760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600c906020840190612f0e565b6000828152601b602052604090205460ff16156121785760405162461bcd60e51b81526020600482015260196024820152782a37b5b2b71034b7103a343290213630b1b5b634b9ba17171760391b6044820152606401610c76565b61218133610ee6565b61219d5760405162461bcd60e51b8152600401610c76906136ab565b611445848484846128f8565b600a546001600160a01b031633146121d35760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600b906020840190612f0e565b600f8054610fe8906137ba565b6000818152600260205260409020546060906001600160a01b03166122725760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c76565b60165460ff161561231b576000828152601a602052604090208054612296906137ba565b80601f01602080910402602001604051908101604052809291908181526020018280546122c2906137ba565b801561230f5780601f106122e45761010080835404028352916020019161230f565b820191906000526020600020905b8154815290600101906020018083116122f257829003601f168201915b50505050509050919050565b600060155411801561232e575081601554105b1561234c576000828152601a602052604090208054612296906137ba565b600061235661292b565b9050600081511161237657604051806020016040528060008152506123a4565b806123808461293a565b600f60405160200161239493929190613485565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146123da5760405162461bcd60e51b8152600401610c769061362f565b8051610f9a90600f906020840190612f0e565b600a546001600160a01b031633146124175760405162461bcd60e51b8152600401610c769061362f565b6001600160a01b03811661247c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c76565b61177d816128a6565b60006001600160e01b031982166380ac58cd60e01b14806124b657506001600160e01b03198216635b5e139f60e01b145b80610c4657506301ffc9a760e01b6001600160e01b0319831614610c46565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061250a82611b91565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166125bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c76565b60006125c783611b91565b9050806001600160a01b0316846001600160a01b031614806126025750836001600160a01b03166125f784610d24565b6001600160a01b0316145b8061263257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661264d82611b91565b6001600160a01b0316146126b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c76565b6001600160a01b0382166127175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c76565b612722838383612a38565b61272d6000826124d5565b6001600160a01b0383166000908152600360205260408120805460019290612756908490613777565b90915550506001600160a01b038216600090815260036020526040812080546001929061278490849061372c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f9a828260405180602001604052806000815250612af0565b600061280a82611b91565b905061281881600084612a38565b6128236000836124d5565b6001600160a01b038116600090815260036020526040812080546001929061284c908490613777565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61290384848461263a565b61290f84848484612b23565b6114455760405162461bcd60e51b8152600401610c76906135dd565b6060600e8054610ca1906137ba565b60608161295e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129885780612972816137f5565b91506129819050600a83613744565b9150612962565b60008167ffffffffffffffff8111156129a3576129a361387c565b6040519080825280601f01601f1916602001820160405280156129cd576020820181803683370190505b5090505b8415612632576129e2600183613777565b91506129ef600a86613810565b6129fa90603061372c565b60f81b818381518110612a0f57612a0f613866565b60200101906001600160f81b031916908160001a905350612a31600a86613744565b94506129d1565b6001600160a01b038316612a9357612a8e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ab6565b816001600160a01b0316836001600160a01b031614612ab657612ab68382612c30565b6001600160a01b038216612acd57610eca81612ccd565b826001600160a01b0316826001600160a01b031614610eca57610eca8282612d7c565b612afa8383612dc0565b612b076000848484612b23565b610eca5760405162461bcd60e51b8152600401610c76906135dd565b60006001600160a01b0384163b15612c2557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b67903390899088908890600401613549565b602060405180830381600087803b158015612b8157600080fd5b505af1925050508015612bb1575060408051601f3d908101601f19168201909252612bae91810190613359565b60015b612c0b573d808015612bdf576040519150601f19603f3d011682016040523d82523d6000602084013e612be4565b606091505b508051612c035760405162461bcd60e51b8152600401610c76906135dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612632565b506001949350505050565b60006001612c3d84611e73565b612c479190613777565b600083815260076020526040902054909150808214612c9a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612cdf90600190613777565b60008381526009602052604081205460088054939450909284908110612d0757612d07613866565b906000526020600020015490508060088381548110612d2857612d28613866565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612d6057612d60613850565b6001900381819060005260206000200160009055905550505050565b6000612d8783611e73565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612e165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c76565b6000818152600260205260409020546001600160a01b031615612e7b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c76565b612e8760008383612a38565b6001600160a01b0382166000908152600360205260408120805460019290612eb090849061372c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612f1a906137ba565b90600052602060002090601f016020900481019282612f3c5760008555612f82565b82601f10612f5557805160ff1916838001178555612f82565b82800160010185558215612f82579182015b82811115612f82578251825591602001919060010190612f67565b50612f8e92915061300d565b5090565b828054612f9e906137ba565b90600052602060002090601f016020900481019282612fc05760008555612f82565b82601f10612fd15780548555612f82565b82800160010185558215612f8257600052602060002091601f016020900482015b82811115612f82578254825591600101919060010190612ff2565b5b80821115612f8e576000815560010161300e565b600067ffffffffffffffff83111561303c5761303c61387c565b61304f601f8401601f19166020016136fb565b905082815283838301111561306357600080fd5b828260208301376000602084830101529392505050565b803580151581146123ab57600080fd5b600082601f83011261309b57600080fd5b6123a483833560208501613022565b6000602082840312156130bc57600080fd5b81356123a481613892565b6000602082840312156130d957600080fd5b81516123a481613892565b600080604083850312156130f757600080fd5b823561310281613892565b9150602083013561311281613892565b809150509250929050565b60008060006060848603121561313257600080fd5b833561313d81613892565b9250602084013561314d81613892565b929592945050506040919091013590565b6000806000806080858703121561317457600080fd5b843561317f81613892565b9350602085013561318f81613892565b925060408501359150606085013567ffffffffffffffff8111156131b257600080fd5b8501601f810187136131c357600080fd5b6131d287823560208401613022565b91505092959194509250565b600080604083850312156131f157600080fd5b82356131fc81613892565b915061320a6020840161307a565b90509250929050565b6000806040838503121561322657600080fd5b823561323181613892565b946020939093013593505050565b60008060006060848603121561325457600080fd5b833561325f81613892565b95602085013595506040909401359392505050565b6000602080838503121561328757600080fd5b823567ffffffffffffffff8082111561329f57600080fd5b818501915085601f8301126132b357600080fd5b8135818111156132c5576132c561387c565b8060051b91506132d68483016136fb565b8181528481019084860184860187018a10156132f157600080fd5b600095505b838610156133145780358352600195909501949186019186016132f6565b5098975050505050505050565b60006020828403121561333357600080fd5b6123a48261307a565b60006020828403121561334e57600080fd5b81356123a4816138a7565b60006020828403121561336b57600080fd5b81516123a4816138a7565b60006020828403121561338857600080fd5b813567ffffffffffffffff81111561339f57600080fd5b6126328482850161308a565b6000602082840312156133bd57600080fd5b5035919050565b600080604083850312156133d757600080fd5b82359150602083013567ffffffffffffffff8111156133f557600080fd5b6134018582860161308a565b9150509250929050565b6000806040838503121561341e57600080fd5b50508035926020909101359150565b60008060006060848603121561344257600080fd5b505081359360208301359350604090920135919050565b6000815180845261347181602086016020860161378e565b601f01601f19169290920160200192915050565b6000845160206134988285838a0161378e565b8551918401916134ab8184848a0161378e565b8554920191600090600181811c90808316806134c857607f831692505b8583108114156134e657634e487b7160e01b85526022600452602485fd5b8080156134fa576001811461350b57613538565b60ff19851688528388019550613538565b60008b81526020902060005b858110156135305781548a820152908401908801613517565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061357c90830184613459565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135be578351835292840192918401916001016135a2565b50909695505050505050565b6020815260006123a46020830184613459565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f467573696f6e3a2063616c6c6572206973206e6f74206f776e6572206f7220616040820152661c1c1c9bdd995960ca1b606082015260800190565b60208082526030908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201526f1ddb995c881bdc88185c1c1c9bdd995960821b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156137245761372461387c565b604052919050565b6000821982111561373f5761373f613824565b500190565b6000826137535761375361383a565b500490565b600081600019048311821515161561377257613772613824565b500290565b60008282101561378957613789613824565b500390565b60005b838110156137a9578181015183820152602001613791565b838111156114455750506000910152565b600181811c908216806137ce57607f821691505b602082108114156137ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561380957613809613824565b5060010190565b60008261381f5761381f61383a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461177d57600080fd5b6001600160e01b03198116811461177d57600080fdfea26469706673582212200821347ab4fdbbc64294d6b0c2a441da49a317168a3b76ce46899de982db4cef64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046e6f6e6500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): none

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 6e6f6e6500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

127:11190:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938:237:5;;;;;;;;;;-1:-1:-1;938:237:5;;;;;:::i;:::-;;:::i;:::-;;;10784:14:13;;10777:22;10759:41;;10747:2;10732:18;938:237:5;;;;;;;;9671:73:2;;;;;;;;;;-1:-1:-1;9671:73:2;;;;;:::i;:::-;;:::i;:::-;;2461:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3879:221:4:-;;;;;;;;;;-1:-1:-1;3879:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9095:32:13;;;9077:51;;9065:2;9050:18;3879:221:4;8931:203:13;3416:397:4;;;;;;;;;;-1:-1:-1;3416:397:4;;;;;:::i;:::-;;:::i;5579:617:2:-;;;;;;:::i;:::-;;:::i;9752:85::-;;;;;;;;;;-1:-1:-1;9752:85:2;;;;;:::i;:::-;;:::i;377:32::-;;;;;;;;;;;;;;;;;;;20343:25:13;;;20331:2;20316:18;377:32:2;20197:177:13;1591:113:5;;;;;;;;;;-1:-1:-1;1679:10:5;:17;1591:113;;652:37:2;;;;;;;;;;-1:-1:-1;652:37:2;;;;;;;;;;;749:84;;;;;;;;;;;;;:::i;8636:102::-;;;;;;;;;;-1:-1:-1;8636:102:2;;;;;:::i;:::-;;:::i;450:33::-;;;;;;;;;;;;;;;;1630:389;;;;;;;;;;-1:-1:-1;1630:389:2;;;;;:::i;:::-;;:::i;10501:156::-;;;;;;;;;;-1:-1:-1;10501:156:2;;;;;:::i;:::-;;:::i;1259:256:5:-;;;;;;;;;;-1:-1:-1;1259:256:5;;;;;:::i;:::-;;:::i;698:44:2:-;;;;;;;;;;;;;;;;10089:248;;;;;;;;;;-1:-1:-1;10089:248:2;;;;;:::i;:::-;;:::i;8744:146::-;;;;;;;;;;-1:-1:-1;8744:146:2;;;;;:::i;:::-;;:::i;5297:278::-;;;;;;:::i;:::-;;:::i;10663:102::-;;;;;;;;;;-1:-1:-1;10663:102:2;;;;;:::i;:::-;;:::i;10938:374::-;;;;;;;;;;;;;:::i;9272:110::-;;;;;;;;;;-1:-1:-1;9272:110:2;;;;;:::i;:::-;;:::i;2856:883::-;;;;;;:::i;:::-;;:::i;6202:888::-;;;;;;:::i;:::-;;:::i;5145:151:4:-;;;;;;;;;;-1:-1:-1;5145:151:4;;;;;:::i;:::-;;:::i;5021:268:2:-;;;;;;:::i;:::-;;:::i;3975:348::-;;;;;;;;;;-1:-1:-1;3975:348:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8338:82::-;;;;;;;;;;-1:-1:-1;8338:82:2;;;;;:::i;:::-;;:::i;8424:106::-;;;;;;;;;;-1:-1:-1;8424:106:2;;;;;:::i;:::-;;:::i;8536:94::-;;;;;;;;;;-1:-1:-1;8536:94:2;;;;;:::i;:::-;;:::i;9843:237::-;;;;;;;;;;-1:-1:-1;9843:237:2;;;;;:::i;:::-;;:::i;1781:233:5:-;;;;;;;;;;-1:-1:-1;1781:233:5;;;;;:::i;:::-;;:::i;7815:321:2:-;;;;;;;;;;-1:-1:-1;7815:321:2;;;;;:::i;:::-;;:::i;3747:218::-;;;;;;:::i;:::-;;:::i;1139:37::-;;;;;;;;;;;;;;;;9166:98;;;;;;;;;;-1:-1:-1;9166:98:2;;;;;:::i;:::-;;:::i;9388:147::-;;;;;;;;;;-1:-1:-1;9388:147:2;;;;;:::i;:::-;;:::i;538:26::-;;;;;;;;;;-1:-1:-1;538:26:2;;;;;;;;10771:110;;;;;;;;;;-1:-1:-1;10771:110:2;;;;;:::i;:::-;;:::i;2113:239:4:-;;;;;;;;;;-1:-1:-1;2113:239:4;;;;;:::i;:::-;;:::i;7094:697:2:-;;;;;;:::i;:::-;;:::i;309:21::-;;;;;;;;;;;;;:::i;999:41::-;;;;;;;;;;-1:-1:-1;999:41:2;;;;;;;;1843:208:4;;;;;;;;;;-1:-1:-1;1843:208:4;;;;;:::i;:::-;;:::i;1650:94:11:-;;;;;;;;;;;;;:::i;10343:152:2:-;;;;;;;;;;-1:-1:-1;10343:152:2;;;;;:::i;:::-;;:::i;571:39::-;;;;;;;;;;;;;;;;8896:118;;;;;;;;;;-1:-1:-1;8896:118:2;;;;;:::i;:::-;;:::i;9022:138::-;;;;;;;;;;-1:-1:-1;9022:138:2;;;;;:::i;:::-;;:::i;1083:51::-;;;;;;;;;;-1:-1:-1;1083:51:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;888:49;;;;;;;;;;-1:-1:-1;888:49:2;;;;;:::i;:::-;;:::i;999:87:11:-;;;;;;;;;;-1:-1:-1;1072:6:11;;-1:-1:-1;;;;;1072:6:11;999:87;;488:41:2;;;;;;;;;;;;;;;;2618:94;;;;;;;;;;;;;:::i;4172:295:4:-;;;;;;;;;;-1:-1:-1;4172:295:4;;;;;:::i;:::-;;:::i;942:50:2:-;;;;;;;;;;-1:-1:-1;942:50:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;8237:95;;;;;;;;;;-1:-1:-1;8237:95:2;;;;;:::i;:::-;;:::i;2027:369::-;;;;;;;;;;-1:-1:-1;2027:369:2;;;;;:::i;:::-;;:::i;8142:89::-;;;;;;;;;;-1:-1:-1;8142:89:2;;;;;:::i;:::-;;:::i;335:37::-;;;;;;;;;;;;;:::i;4329:657::-;;;;;;;;;;-1:-1:-1;4329:657:2;;;;;:::i;:::-;;:::i;414:31::-;;;;;;;;;;;;;;;;840:43;;;;;;;;;;-1:-1:-1;840:43:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;9543:122;;;;;;;;;;-1:-1:-1;9543:122:2;;;;;:::i;:::-;;:::i;4538:164:4:-;;;;;;;;;;-1:-1:-1;4538:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4659:25:4;;;4635:4;4659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4538:164;1899:192:11;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;617:26:2:-;;;;;;;;;;-1:-1:-1;617:26:2;;;;;;;;938:237:5;1040:4;-1:-1:-1;;;;;;1064:50:5;;-1:-1:-1;;;1064:50:5;;:103;;;1131:36;1155:11;1131:23;:36::i;:::-;1057:110;938:237;-1:-1:-1;;938:237:5:o;9671:73:2:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;;;;;;;;;9723:6:2::1;:15:::0;;-1:-1:-1;;9723:15:2::1;::::0;::::1;;::::0;;;::::1;::::0;;9671:73::o;2461:90::-;2507:13;2538:5;2531:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2461:90;:::o;3879:221:4:-;3955:7;7208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7208:16:4;3975:73;;;;-1:-1:-1;;;3975:73:4;;16737:2:13;3975:73:4;;;16719:21:13;16776:2;16756:18;;;16749:30;16815:34;16795:18;;;16788:62;-1:-1:-1;;;16866:18:13;;;16859:42;16918:19;;3975:73:4;16535:408:13;3975:73:4;-1:-1:-1;4068:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4068:24:4;;3879:221::o;3416:397::-;3497:13;3513:23;3528:7;3513:14;:23::i;:::-;3497:39;;3561:5;-1:-1:-1;;;;;3555:11:4;:2;-1:-1:-1;;;;;3555:11:4;;;3547:57;;;;-1:-1:-1;;;3547:57:4;;18745:2:13;3547:57:4;;;18727:21:13;18784:2;18764:18;;;18757:30;18823:34;18803:18;;;18796:62;-1:-1:-1;;;18874:18:13;;;18867:31;18915:19;;3547:57:4;18543:397:13;3547:57:4;681:10:1;-1:-1:-1;;;;;3625:21:4;;;;:62;;-1:-1:-1;3650:37:4;3667:5;681:10:1;4538:164:4;:::i;3650:37::-;3617:154;;;;-1:-1:-1;;;3617:154:4;;14712:2:13;3617:154:4;;;14694:21:13;14751:2;14731:18;;;14724:30;14790:34;14770:18;;;14763:62;14861:26;14841:18;;;14834:54;14905:19;;3617:154:4;14510:420:13;3617:154:4;3784:21;3793:2;3797:7;3784:8;:21::i;:::-;3486:327;3416:397;;:::o;5579:617:2:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;5660:10:2;:21;5656:505;;5712:41;681:10:1;5731:12:2;5745:7;5712:18;:41::i;:::-;5704:93;;;;-1:-1:-1;;;5704:93:2;;;;;;;:::i;:::-;5816:45;681:10:1;5835:12:2;5849:11;5816:18;:45::i;:::-;5808:97;;;;-1:-1:-1;;;5808:97:2;;;;;;;:::i;:::-;5937:10;;5924:9;:23;;5916:32;;;;;;5656:505;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;5975:10:2;:21;5971:190;;;6008:18;6029:16;6037:7;6029;:16::i;:::-;6008:37;;6056:22;6081:20;6089:11;6081:7;:20::i;:::-;6056:45;;6136:14;-1:-1:-1;;;;;6122:28:2;:10;-1:-1:-1;;;;;6122:28:2;;6114:37;;;;;;5997:164;;5971:190;6171:17;6176:11;6171:4;:17::i;:::-;5579:617;;:::o;9752:85::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;9809:7:2::1;:16:::0;;-1:-1:-1;;9809:16:2::1;::::0;::::1;;::::0;;;::::1;::::0;;9752:85::o;749:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8636:102::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8707:9:2::1;:25:::0;8636:102::o;1630:389::-;1791:27;;;;:18;:27;;;;;;;;:36;1783:74;;;;-1:-1:-1;;;1783:74:2;;13945:2:13;1783:74:2;;;13927:21:13;13984:2;13964:18;;;13957:30;-1:-1:-1;;;14003:18:13;;;13996:55;14068:18;;1783:74:2;13743:349:13;1783:74:2;1876:41;681:10:1;1895:12:2;601:98:1;1876:41:2;1868:102;;;;-1:-1:-1;;;1868:102:2;;;;;;;:::i;:::-;1983:28;1993:4;1999:2;2003:7;1983:9;:28::i;10501:156::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1072:6;;-1:-1:-1;;;;;1072:6:11;10585:10:2::1;:21;10577:30;;;::::0;::::1;;-1:-1:-1::0;;;;;10614:29:2::1;10646:5;10614:29:::0;;;:19:::1;:29;::::0;;;;:37;;-1:-1:-1;;10614:37:2::1;::::0;;10501:156::o;1259:256:5:-;1356:7;1392:23;1409:5;1392:16;:23::i;:::-;1384:5;:31;1376:87;;;;-1:-1:-1;;;1376:87:5;;11237:2:13;1376:87:5;;;11219:21:13;11276:2;11256:18;;;11249:30;11315:34;11295:18;;;11288:62;-1:-1:-1;;;11366:18:13;;;11359:41;11417:19;;1376:87:5;11035:407:13;1376:87:5;-1:-1:-1;;;;;;1481:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1259:256::o;10089:248:2:-;10151:22;;;;:30;;:22;:30;10148:146;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;10198:10:2;:21;10190:30;;;;;;10148:146;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;10236:10:2;:21;10233:61;;10274:10;-1:-1:-1;;;;;10274:19:2;;;10266:28;;;;;;-1:-1:-1;;;;;10305:18:2;10326:5;10305:18;;;:11;:18;;;;;:26;;-1:-1:-1;;10305:26:2;;;10089:248::o;8744:146::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8837:20:2::1;:47:::0;8744:146::o;5297:278::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;5386:10:2;:21;5382:186;;5428:41;681:10:1;5447:12:2;601:98:1;5428:41:2;:86;;;-1:-1:-1;681:10:1;5473:33:2;;;;:19;:33;;;;;;;;:41;;:33;:41;5428:86;5420:138;;;;-1:-1:-1;;;5420:138:2;;;;;;;:::i;10663:102::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;10731:18:2::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;10731:27:2;;::::1;::::0;;;::::1;::::0;;10663:102::o;10938:374::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;10998:21:2::1;10987:8;11048:10;11055:3;10998:21:::0;11048:10:::1;:::i;:::-;11030:28:::0;-1:-1:-1;11087:9:2::1;11099:15;11030:28:::0;11112:2:::1;11099:15;:::i;:::-;11087:27:::0;-1:-1:-1;11125:9:2::1;11137:15;:10:::0;11150:2:::1;11137:15;:::i;:::-;11189:4;::::0;11181:24:::1;::::0;11125:27;;-1:-1:-1;;;;;;11189:4:2::1;::::0;11181:24;::::1;;;::::0;11125:27;;11189:4:::1;11181:24:::0;11189:4;11181:24;11125:27;11189:4;11181:24;::::1;;;;;;11173:33;;;::::0;::::1;;11233:6;::::0;11225:26:::1;::::0;-1:-1:-1;;;;;11233:6:2;;::::1;::::0;11225:26;::::1;;;::::0;11246:4;;11233:6:::1;11225:26:::0;11233:6;11225:26;11246:4;11233:6;11225:26;::::1;;;;;;11217:35;;;::::0;::::1;;11279:4;::::0;11271:24:::1;::::0;-1:-1:-1;;;;;11279:4:2;;::::1;::::0;11271:24;::::1;;;::::0;11290:4;;11279::::1;11271:24:::0;11279:4;11271:24;11290:4;11279;11271:24;::::1;;;;;;11263:33;;;::::0;::::1;;10974:338;;;;10938:374::o:0;9272:110::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;9349:27:2;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;2856:883::-:0;2935:6;;;;2934:7;2926:16;;;;;;2971:1;2957:11;:15;2949:24;;;;;;3028:9;;3013:11;2994:16;;:30;;;;:::i;:::-;:43;;2986:52;;;;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;3055:10:2;:21;3051:485;;3091:24;3118:14;3128:3;3118:9;:14::i;:::-;3185:18;;3091:41;;-1:-1:-1;3151:30:2;3170:11;3091:41;3151:30;:::i;:::-;:52;;3143:61;;;;;;3232:10;3220:23;;;;:11;:23;;;;;;;;:31;;:23;:31;3217:310;;;3291:13;;3276:11;:28;;3268:37;;;;;;3360:11;3341:16;;:30;;;;:::i;:::-;3328:9;:43;;3320:52;;;;;;3217:310;;;3446:13;;3431:11;:28;;3423:37;;;;;;3503:11;3496:4;;:18;;;;:::i;:::-;3483:9;:31;;3475:40;;;;;;3078:458;3051:485;3561:1;3544:190;3569:11;3564:1;:16;3544:190;;3600:36;3610:3;3615:16;;3634:1;3615:20;;;;:::i;:::-;3600:9;:36::i;:::-;3649:16;:18;;;:16;:18;;;:::i;:::-;;;;-1:-1:-1;;3696:16:2;;3680:33;;;;:15;:33;;;;;3716:10;3680:46;;;;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1;3582:3:2;;;;:::i;:::-;;;;3544:190;;6202:888;1072:6:11;;-1:-1:-1;;;;;1072:6:11;6306:10:2;:21;6302:725;;6358:41;681:10:1;6391:7:2;6358:18;:41::i;:::-;6350:93;;;;-1:-1:-1;;;6350:93:2;;;;;;;:::i;:::-;6462:46;681:10:1;6481:12:2;601:98:1;6462:46:2;6454:98;;;;-1:-1:-1;;;6454:98:2;;;;;;;:::i;:::-;6571:46;681:10:1;6590:12:2;601:98:1;6571:46:2;6563:98;;;;-1:-1:-1;;;6563:98:2;;;;;;;:::i;:::-;6695:10;;6682:9;:23;;6674:32;;;;;;6302:725;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;6735:10:2;:21;6731:296;;;6778:18;6799:16;6807:7;6799;:16::i;:::-;6778:37;;6826:23;6852:21;6860:12;6852:7;:21::i;:::-;6826:47;;6884:23;6910:21;6918:12;6910:7;:21::i;:::-;6884:47;;6966:15;-1:-1:-1;;;;;6952:29:2;:10;-1:-1:-1;;;;;6952:29:2;;:62;;;;;6999:15;-1:-1:-1;;;;;6985:29:2;:10;-1:-1:-1;;;;;6985:29:2;;6952:62;6944:71;;;;;;6757:270;;;6731:296;7037:18;7042:12;7037:4;:18::i;:::-;7064;7069:12;7064:4;:18::i;5145:151:4:-;5249:39;5266:4;5272:2;5276:7;5249:39;;;;;;;;;;;;:16;:39::i;5021:268:2:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;5079:10:2;:21;5075:184;;5121:41;681:10:1;5140:12:2;601:98:1;5121:41:2;:86;;;-1:-1:-1;681:10:1;5166:33:2;;;;:19;:33;;;;;;;;:41;;:33;:41;5121:86;5113:138;;;;-1:-1:-1;;;5113:138:2;;;;;;;:::i;:::-;5267:14;5273:7;5267:5;:14::i;:::-;5021:268;:::o;3975:348::-;4050:16;4078:23;4104:17;4114:6;4104:9;:17::i;:::-;4078:43;;4128:25;4170:15;4156:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4156:30:2;;4128:58;;4198:9;4193:103;4213:15;4209:1;:19;4193:103;;;4258:30;4278:6;4286:1;4258:19;:30::i;:::-;4244:8;4253:1;4244:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;4230:3;;;;:::i;:::-;;;;4193:103;;;-1:-1:-1;4309:8:2;3975:348;-1:-1:-1;;;3975:348:2:o;8338:82::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8399:4:2::1;:15:::0;8338:82::o;8424:106::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8497:16:2::1;:27:::0;8424:106::o;8536:94::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8603:10:2::1;:21:::0;8536:94::o;9843:237::-;9898:22;;;;:30;;:22;:30;9895:145;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;9945:10:2;:21;9937:30;;;;;;9895:145;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;9982:10:2;:21;9979:61;;10020:10;-1:-1:-1;;;;;10020:19:2;;;10012:28;;;;;;-1:-1:-1;;;;;10049:18:2;;;;;:11;:18;;;;;:25;;-1:-1:-1;;10049:25:2;10070:4;10049:25;;;9843:237::o;1781:233:5:-;1856:7;1892:30;1679:10;:17;;1591:113;1892:30;1884:5;:38;1876:95;;;;-1:-1:-1;;;1876:95:5;;19147:2:13;1876:95:5;;;19129:21:13;19186:2;19166:18;;;19159:30;19225:34;19205:18;;;19198:62;-1:-1:-1;;;19276:18:13;;;19269:42;19328:19;;1876:95:5;18945:408:13;1876:95:5;1989:10;2000:5;1989:17;;;;;;;;:::i;:::-;;;;;;;;;1982:24;;1781:233;;;:::o;7815:321:2:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;7910:9:2::1;7905:91;7925:16;::::0;:18:::1;::::0;7942:1:::1;7925:18;:::i;:::-;7921:1;:22;7905:91;;;7983:5;7959:21:::0;;;:18:::1;:21;::::0;;;;:29;;-1:-1:-1;;7959:29:2::1;::::0;;7978:1;7945:3:::1;7978:1:::0;7945:3:::1;:::i;:::-;;;;7905:91;;;;8009:9;8004:125;8024:28:::0;;:30:::1;::::0;8053:1:::1;8024:30;:::i;:::-;8020:1;:34;8004:125;;;8117:4;8070:18;:44;8089:21;8111:1;8089:24;;;;;;;;:::i;:::-;;;;;;;8070:44;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;8056:3;;;;;:::i;:::-;;;;8004:125;;3747:218:::0;3839:18;;;;;;;;:26;;:18;:26;3836:74;;;3892:10;3880:23;;;;:11;:23;;;;;:30;;-1:-1:-1;;3880:30:2;3906:4;3880:30;;;3836:74;3931:22;3936:3;3941:11;3931:4;:22::i;9166:98::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;9237:21:2;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;9388:147::-:0;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;9488:24:2::1;::::0;;;:15:::1;:24;::::0;;;;;;;:41;;::::1;::::0;;::::1;::::0;::::1;:::i;10771:110::-:0;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;10843:22:2::1;:31:::0;;-1:-1:-1;;10843:31:2::1;::::0;::::1;;::::0;;;::::1;::::0;;10771:110::o;2113:239:4:-;2185:7;2221:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2221:16:4;2256:19;2248:73;;;;-1:-1:-1;;;2248:73:4;;15548:2:13;2248:73:4;;;15530:21:13;15587:2;15567:18;;;15560:30;15626:34;15606:18;;;15599:62;-1:-1:-1;;;15677:18:13;;;15670:39;15726:19;;2248:73:4;15346:405:13;7094:697:2;-1:-1:-1;;;;;7213:29:2;;;;;;:19;:29;;;;;;;;:37;;:29;:37;7205:75;;;;-1:-1:-1;;;7205:75:2;;12832:2:13;7205:75:2;;;12814:21:13;12871:2;12851:18;;;12844:30;12910:27;12890:18;;;12883:55;12955:18;;7205:75:2;12630:349:13;7205:75:2;1072:6:11;;-1:-1:-1;;;;;1072:6:11;7293:10:2;:21;7289:392;;7335:41;681:10:1;7354:12:2;601:98:1;7335:41:2;7327:103;;;;-1:-1:-1;;;7327:103:2;;15958:2:13;7327:103:2;;;15940:21:13;15997:2;15977:18;;;15970:30;16036:34;16016:18;;;16009:62;-1:-1:-1;;;16087:18:13;;;16080:47;16144:19;;7327:103:2;15756:413:13;7327:103:2;7476:37;;-1:-1:-1;;;7476:37:2;;;;;20343:25:13;;;7441:32:2;;-1:-1:-1;;;;;7476:24:2;;;;;20316:18:13;;7476:37:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7441:72;-1:-1:-1;681:10:1;-1:-1:-1;;;;;7532:40:2;;;7524:106;;;;-1:-1:-1;;;7524:106:2;;19977:2:13;7524:106:2;;;19959:21:13;20016:2;19996:18;;;19989:30;20055:34;20035:18;;;20028:62;-1:-1:-1;;;20106:18:13;;;20099:51;20167:19;;7524:106:2;19775:417:13;7524:106:2;7662:10;;7649:9;:23;;7641:32;;;;;;7316:365;7289:392;7694:85;;-1:-1:-1;;;7694:85:2;;7751:4;7694:85;;;9834:51:13;9901:18;;;9894:34;;;9944:18;;;9937:34;;;-1:-1:-1;;;;;7694:48:2;;;;;9807:18:13;;7694:85:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7094:697;;;:::o;309:21::-;;;;;;;:::i;1843:208:4:-;1915:7;-1:-1:-1;;;;;1943:19:4;;1935:74;;;;-1:-1:-1;;;1935:74:4;;15137:2:13;1935:74:4;;;15119:21:13;15176:2;15156:18;;;15149:30;15215:34;15195:18;;;15188:62;-1:-1:-1;;;15266:18:13;;;15259:40;15316:19;;1935:74:4;14935:406:13;1935:74:4;-1:-1:-1;;;;;;2027:16:4;;;;;:9;:16;;;;;;;1843:208::o;1650:94:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;10343:152:2:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1072:6;;-1:-1:-1;;;;;1072:6:11;10424:10:2::1;:21;10416:30;;;::::0;::::1;;-1:-1:-1::0;;;;;10453:29:2::1;;::::0;;;:19:::1;:29;::::0;;;;:36;;-1:-1:-1;;10453:36:2::1;10485:4;10453:36;::::0;;10343:152::o;8896:118::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8975:13:2::1;:33:::0;8896:118::o;9022:138::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;9111:18:2::1;:43:::0;9022:138::o;888:49::-;;;;;;;;;;;;;;;;:::i;2618:94::-;2666:13;2697:7;2690:14;;;;;:::i;4172:295:4:-;-1:-1:-1;;;;;4275:24:4;;681:10:1;4275:24:4;;4267:62;;;;-1:-1:-1;;;4267:62:4;;13591:2:13;4267:62:4;;;13573:21:13;13630:2;13610:18;;;13603:30;13669:27;13649:18;;;13642:55;13714:18;;4267:62:4;13389:349:13;4267:62:4;681:10:1;4342:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4342:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4342:53:4;;;;;;;;;;4411:48;;10759:41:13;;;4342:42:4;;681:10:1;4411:48:4;;10732:18:13;4411:48:4;;;;;;;4172:295;;:::o;8237:95:2:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8307:19:2;;::::1;::::0;:7:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;2027:369::-:0;2159:27;;;;:18;:27;;;;;;;;:36;2151:74;;;;-1:-1:-1;;;2151:74:2;;13945:2:13;2151:74:2;;;13927:21:13;13984:2;13964:18;;;13957:30;-1:-1:-1;;;14003:18:13;;;13996:55;14068:18;;2151:74:2;13743:349:13;2151:74:2;2244:41;681:10:1;2263:12:2;601:98:1;2244:41:2;2236:102;;;;-1:-1:-1;;;2236:102:2;;;;;;;:::i;:::-;2349:39;2363:4;2369:2;2373:7;2382:5;2349:13;:39::i;8142:89::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;8209:16:2;;::::1;::::0;:5:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;335:37::-:0;;;;;;;:::i;4329:657::-;7184:4:4;7208:16;;;:7;:16;;;;;;4427:13:2;;-1:-1:-1;;;;;7208:16:4;4452:97:2;;;;-1:-1:-1;;;4452:97:2;;17921:2:13;4452:97:2;;;17903:21:13;17960:2;17940:18;;;17933:30;17999:34;17979:18;;;17972:62;-1:-1:-1;;;18050:18:13;;;18043:45;18105:19;;4452:97:2;17719:411:13;4452:97:2;4561:7;;;;4558:421;;;4585:24;;;;:15;:24;;;;;4578:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4329:657;;;:::o;4558:421::-;4654:1;4631:20;;:24;:58;;;;;4682:7;4659:20;;:30;4631:58;4628:351;;;4706:24;;;;:15;:24;;;;;4699:31;;;;;:::i;4628:351::-;4765:28;4796:10;:8;:10::i;:::-;4765:41;;4865:1;4840:14;4834:28;:32;:133;;;;;;;;;;;;;;;;;4902:14;4918:18;:7;:16;:18::i;:::-;4938:13;4885:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4834:133;4827:140;4329:657;-1:-1:-1;;;4329:657:2:o;4628:351::-;4329:657;;;:::o;9543:122::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;9626:33:2;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;1899:192:11:-:0;1072:6;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:11;;12068:2:13;1980:73:11::1;::::0;::::1;12050:21:13::0;12107:2;12087:18;;;12080:30;12146:34;12126:18;;;12119:62;-1:-1:-1;;;12197:18:13;;;12190:36;12243:19;;1980:73:11::1;11866:402:13::0;1980:73:11::1;2064:19;2074:8;2064:9;:19::i;1487:292:4:-:0;1589:4;-1:-1:-1;;;;;;1613:40:4;;-1:-1:-1;;;1613:40:4;;:105;;-1:-1:-1;;;;;;;1670:48:4;;-1:-1:-1;;;1670:48:4;1613:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:3;;;1735:36:4;787:157:3;10996:174:4;11071:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11071:29:4;-1:-1:-1;;;;;11071:29:4;;;;;;;;:24;;11125:23;11071:24;11125:14;:23::i;:::-;-1:-1:-1;;;;;11116:46:4;;;;;;;;;;;10996:174;;:::o;7413:348::-;7506:4;7208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7208:16:4;7523:73;;;;-1:-1:-1;;;7523:73:4;;14299:2:13;7523:73:4;;;14281:21:13;14338:2;14318:18;;;14311:30;14377:34;14357:18;;;14350:62;-1:-1:-1;;;14428:18:13;;;14421:42;14480:19;;7523:73:4;14097:408:13;7523:73:4;7607:13;7623:23;7638:7;7623:14;:23::i;:::-;7607:39;;7676:5;-1:-1:-1;;;;;7665:16:4;:7;-1:-1:-1;;;;;7665:16:4;;:51;;;;7709:7;-1:-1:-1;;;;;7685:31:4;:20;7697:7;7685:11;:20::i;:::-;-1:-1:-1;;;;;7685:31:4;;7665:51;:87;;;-1:-1:-1;;;;;;4659:25:4;;;4635:4;4659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7720:32;7657:96;7413:348;-1:-1:-1;;;;7413:348:4:o;10334:544::-;10459:4;-1:-1:-1;;;;;10432:31:4;:23;10447:7;10432:14;:23::i;:::-;-1:-1:-1;;;;;10432:31:4;;10424:85;;;;-1:-1:-1;;;10424:85:4;;17511:2:13;10424:85:4;;;17493:21:13;17550:2;17530:18;;;17523:30;17589:34;17569:18;;;17562:62;-1:-1:-1;;;17640:18:13;;;17633:39;17689:19;;10424:85:4;17309:405:13;10424:85:4;-1:-1:-1;;;;;10528:16:4;;10520:65;;;;-1:-1:-1;;;10520:65:4;;13186:2:13;10520:65:4;;;13168:21:13;13225:2;13205:18;;;13198:30;13264:34;13244:18;;;13237:62;-1:-1:-1;;;13315:18:13;;;13308:34;13359:19;;10520:65:4;12984:400:13;10520:65:4;10598:39;10619:4;10625:2;10629:7;10598:20;:39::i;:::-;10702:29;10719:1;10723:7;10702:8;:29::i;:::-;-1:-1:-1;;;;;10744:15:4;;;;;;:9;:15;;;;;:20;;10763:1;;10744:15;:20;;10763:1;;10744:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10775:13:4;;;;;;:9;:13;;;;;:18;;10792:1;;10775:13;:18;;10792:1;;10775:18;:::i;:::-;;;;-1:-1:-1;;10804:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10804:21:4;-1:-1:-1;;;;;10804:21:4;;;;;;;;;10843:27;;10804:16;;10843:27;;;;;;;10334:544;;;:::o;8103:110::-;8179:26;8189:2;8193:7;8179:26;;;;;;;;;;;;:9;:26::i;9637:360::-;9697:13;9713:23;9728:7;9713:14;:23::i;:::-;9697:39;;9749:48;9770:5;9785:1;9789:7;9749:20;:48::i;:::-;9838:29;9855:1;9859:7;9838:8;:29::i;:::-;-1:-1:-1;;;;;9880:16:4;;;;;;:9;:16;;;;;:21;;9900:1;;9880:16;:21;;9900:1;;9880:21;:::i;:::-;;;;-1:-1:-1;;9919:16:4;;;;:7;:16;;;;;;9912:23;;-1:-1:-1;;;;;;9912:23:4;;;9953:36;9927:7;;9919:16;-1:-1:-1;;;;;9953:36:4;;;;;9919:16;;9953:36;9686:311;9637:360;:::o;2099:173:11:-;2174:6;;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;;;;;2191:17:11;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;6534:272:4:-;6648:28;6658:4;6664:2;6668:7;6648:9;:28::i;:::-;6695:48;6718:4;6724:2;6728:7;6737:5;6695:22;:48::i;:::-;6687:111;;;;-1:-1:-1;;;6687:111:4;;;;;;;:::i;2733:102:2:-;2793:13;2822:7;2815:14;;;;;:::i;288:723:12:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:12;;;;;;;;;;;;-1:-1:-1;;;592:10:12;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:12;;-1:-1:-1;744:2:12;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:12;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:12;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:12;;;;;;;;-1:-1:-1;949:11:12;958:2;949:11;;:::i;:::-;;;818:154;;2627:555:5;-1:-1:-1;;;;;2799:18:5;;2795:187;;2834:40;2866:7;4009:10;:17;;3982:24;;;;:15;:24;;;;;:44;;;4037:24;;;;;;;;;;;;3905:164;2834:40;2795:187;;;2904:2;-1:-1:-1;;;;;2896:10:5;:4;-1:-1:-1;;;;;2896:10:5;;2892:90;;2923:47;2956:4;2962:7;2923:32;:47::i;:::-;-1:-1:-1;;;;;2996:16:5;;2992:183;;3029:45;3066:7;3029:36;:45::i;2992:183::-;3102:4;-1:-1:-1;;;;;3096:10:5;:2;-1:-1:-1;;;;;3096:10:5;;3092:83;;3123:40;3151:2;3155:7;3123:27;:40::i;8440:250:4:-;8536:18;8542:2;8546:7;8536:5;:18::i;:::-;8573:54;8604:1;8608:2;8612:7;8621:5;8573:22;:54::i;:::-;8565:117;;;;-1:-1:-1;;;8565:117:4;;;;;;;:::i;11735:843::-;11856:4;-1:-1:-1;;;;;11882:13:4;;1110:20:0;1149:8;11878:693:4;;11918:72;;-1:-1:-1;;;11918:72:4;;-1:-1:-1;;;;;11918:36:4;;;;;:72;;681:10:1;;11969:4:4;;11975:7;;11984:5;;11918:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11918:72:4;;;;;;;;-1:-1:-1;;11918:72:4;;;;;;;;;;;;:::i;:::-;;;11914:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12164:13:4;;12160:341;;12207:60;;-1:-1:-1;;;12207:60:4;;;;;;;:::i;12160:341::-;12451:6;12445:13;12436:6;12432:2;12428:15;12421:38;11914:602;-1:-1:-1;;;;;;12041:55:4;-1:-1:-1;;;12041:55:4;;-1:-1:-1;12034:62:4;;11878:693;-1:-1:-1;12555:4:4;11735:843;;;;;;:::o;4696:988:5:-;4962:22;5012:1;4987:22;5004:4;4987:16;:22::i;:::-;:26;;;;:::i;:::-;5024:18;5045:26;;;:17;:26;;;;;;4962:51;;-1:-1:-1;5178:28:5;;;5174:328;;-1:-1:-1;;;;;5245:18:5;;5223:19;5245:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5296:30;;;;;;:44;;;5413:30;;:17;:30;;;;;:43;;;5174:328;-1:-1:-1;5598:26:5;;;;:17;:26;;;;;;;;5591:33;;;-1:-1:-1;;;;;5642:18:5;;;;;:12;:18;;;;;:34;;;;;;;5635:41;4696:988::o;5979:1079::-;6257:10;:17;6232:22;;6257:21;;6277:1;;6257:21;:::i;:::-;6289:18;6310:24;;;:15;:24;;;;;;6683:10;:26;;6232:46;;-1:-1:-1;6310:24:5;;6232:46;;6683:26;;;;;;:::i;:::-;;;;;;;;;6661:48;;6747:11;6722:10;6733;6722:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6827:28;;;:15;:28;;;;;;;:41;;;6999:24;;;;;6992:31;7034:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6050:1008;;;5979:1079;:::o;3483:221::-;3568:14;3585:20;3602:2;3585:16;:20::i;:::-;-1:-1:-1;;;;;3616:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3661:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3483:221:5:o;9026:382:4:-;-1:-1:-1;;;;;9106:16:4;;9098:61;;;;-1:-1:-1;;;9098:61:4;;16376:2:13;9098:61:4;;;16358:21:13;;;16395:18;;;16388:30;16454:34;16434:18;;;16427:62;16506:18;;9098:61:4;16174:356:13;9098:61:4;7184:4;7208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7208:16:4;:30;9170:58;;;;-1:-1:-1;;;9170:58:4;;12475:2:13;9170:58:4;;;12457:21:13;12514:2;12494:18;;;12487:30;12553;12533:18;;;12526:58;12601:18;;9170:58:4;12273:352:13;9170:58:4;9241:45;9270:1;9274:2;9278:7;9241:20;:45::i;:::-;-1:-1:-1;;;;;9299:13:4;;;;;;:9;:13;;;;;:18;;9316:1;;9299:13;:18;;9316:1;;9299:18;:::i;:::-;;;;-1:-1:-1;;9328:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9328:21:4;-1:-1:-1;;;;;9328:21:4;;;;;;;;9367:33;;9328:16;;;9367:33;;9328:16;;9367:33;9026:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:13;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:13;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;590:221;633:5;686:3;679:4;671:6;667:17;663:27;653:55;;704:1;701;694:12;653:55;726:79;801:3;792:6;779:20;772:4;764:6;760:17;726:79;:::i;816:247::-;875:6;928:2;916:9;907:7;903:23;899:32;896:52;;;944:1;941;934:12;896:52;983:9;970:23;1002:31;1027:5;1002:31;:::i;1068:251::-;1138:6;1191:2;1179:9;1170:7;1166:23;1162:32;1159:52;;;1207:1;1204;1197:12;1159:52;1239:9;1233:16;1258:31;1283:5;1258:31;:::i;1324:388::-;1392:6;1400;1453:2;1441:9;1432:7;1428:23;1424:32;1421:52;;;1469:1;1466;1459:12;1421:52;1508:9;1495:23;1527:31;1552:5;1527:31;:::i;:::-;1577:5;-1:-1:-1;1634:2:13;1619:18;;1606:32;1647:33;1606:32;1647:33;:::i;:::-;1699:7;1689:17;;;1324:388;;;;;:::o;1717:456::-;1794:6;1802;1810;1863:2;1851:9;1842:7;1838:23;1834:32;1831:52;;;1879:1;1876;1869:12;1831:52;1918:9;1905:23;1937:31;1962:5;1937:31;:::i;:::-;1987:5;-1:-1:-1;2044:2:13;2029:18;;2016:32;2057:33;2016:32;2057:33;:::i;:::-;1717:456;;2109:7;;-1:-1:-1;;;2163:2:13;2148:18;;;;2135:32;;1717:456::o;2178:794::-;2273:6;2281;2289;2297;2350:3;2338:9;2329:7;2325:23;2321:33;2318:53;;;2367:1;2364;2357:12;2318:53;2406:9;2393:23;2425:31;2450:5;2425:31;:::i;:::-;2475:5;-1:-1:-1;2532:2:13;2517:18;;2504:32;2545:33;2504:32;2545:33;:::i;:::-;2597:7;-1:-1:-1;2651:2:13;2636:18;;2623:32;;-1:-1:-1;2706:2:13;2691:18;;2678:32;2733:18;2722:30;;2719:50;;;2765:1;2762;2755:12;2719:50;2788:22;;2841:4;2833:13;;2829:27;-1:-1:-1;2819:55:13;;2870:1;2867;2860:12;2819:55;2893:73;2958:7;2953:2;2940:16;2935:2;2931;2927:11;2893:73;:::i;:::-;2883:83;;;2178:794;;;;;;;:::o;2977:315::-;3042:6;3050;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:31;3202:5;3177:31;:::i;:::-;3227:5;-1:-1:-1;3251:35:13;3282:2;3267:18;;3251:35;:::i;:::-;3241:45;;2977:315;;;;;:::o;3297:::-;3365:6;3373;3426:2;3414:9;3405:7;3401:23;3397:32;3394:52;;;3442:1;3439;3432:12;3394:52;3481:9;3468:23;3500:31;3525:5;3500:31;:::i;:::-;3550:5;3602:2;3587:18;;;;3574:32;;-1:-1:-1;;;3297:315:13:o;3617:383::-;3694:6;3702;3710;3763:2;3751:9;3742:7;3738:23;3734:32;3731:52;;;3779:1;3776;3769:12;3731:52;3818:9;3805:23;3837:31;3862:5;3837:31;:::i;:::-;3887:5;3939:2;3924:18;;3911:32;;-1:-1:-1;3990:2:13;3975:18;;;3962:32;;3617:383;-1:-1:-1;;;3617:383:13:o;4005:957::-;4089:6;4120:2;4163;4151:9;4142:7;4138:23;4134:32;4131:52;;;4179:1;4176;4169:12;4131:52;4219:9;4206:23;4248:18;4289:2;4281:6;4278:14;4275:34;;;4305:1;4302;4295:12;4275:34;4343:6;4332:9;4328:22;4318:32;;4388:7;4381:4;4377:2;4373:13;4369:27;4359:55;;4410:1;4407;4400:12;4359:55;4446:2;4433:16;4468:2;4464;4461:10;4458:36;;;4474:18;;:::i;:::-;4520:2;4517:1;4513:10;4503:20;;4543:28;4567:2;4563;4559:11;4543:28;:::i;:::-;4605:15;;;4636:12;;;;4668:11;;;4698;;;4694:20;;4691:33;-1:-1:-1;4688:53:13;;;4737:1;4734;4727:12;4688:53;4759:1;4750:10;;4769:163;4783:2;4780:1;4777:9;4769:163;;;4840:17;;4828:30;;4801:1;4794:9;;;;;4878:12;;;;4910;;4769:163;;;-1:-1:-1;4951:5:13;4005:957;-1:-1:-1;;;;;;;;4005:957:13:o;4967:180::-;5023:6;5076:2;5064:9;5055:7;5051:23;5047:32;5044:52;;;5092:1;5089;5082:12;5044:52;5115:26;5131:9;5115:26;:::i;5152:245::-;5210:6;5263:2;5251:9;5242:7;5238:23;5234:32;5231:52;;;5279:1;5276;5269:12;5231:52;5318:9;5305:23;5337:30;5361:5;5337:30;:::i;5402:249::-;5471:6;5524:2;5512:9;5503:7;5499:23;5495:32;5492:52;;;5540:1;5537;5530:12;5492:52;5572:9;5566:16;5591:30;5615:5;5591:30;:::i;5656:322::-;5725:6;5778:2;5766:9;5757:7;5753:23;5749:32;5746:52;;;5794:1;5791;5784:12;5746:52;5834:9;5821:23;5867:18;5859:6;5856:30;5853:50;;;5899:1;5896;5889:12;5853:50;5922;5964:7;5955:6;5944:9;5940:22;5922:50;:::i;5983:180::-;6042:6;6095:2;6083:9;6074:7;6070:23;6066:32;6063:52;;;6111:1;6108;6101:12;6063:52;-1:-1:-1;6134:23:13;;5983:180;-1:-1:-1;5983:180:13:o;6168:390::-;6246:6;6254;6307:2;6295:9;6286:7;6282:23;6278:32;6275:52;;;6323:1;6320;6313:12;6275:52;6359:9;6346:23;6336:33;;6420:2;6409:9;6405:18;6392:32;6447:18;6439:6;6436:30;6433:50;;;6479:1;6476;6469:12;6433:50;6502;6544:7;6535:6;6524:9;6520:22;6502:50;:::i;:::-;6492:60;;;6168:390;;;;;:::o;6563:248::-;6631:6;6639;6692:2;6680:9;6671:7;6667:23;6663:32;6660:52;;;6708:1;6705;6698:12;6660:52;-1:-1:-1;;6731:23:13;;;6801:2;6786:18;;;6773:32;;-1:-1:-1;6563:248:13:o;6816:316::-;6893:6;6901;6909;6962:2;6950:9;6941:7;6937:23;6933:32;6930:52;;;6978:1;6975;6968:12;6930:52;-1:-1:-1;;7001:23:13;;;7071:2;7056:18;;7043:32;;-1:-1:-1;7122:2:13;7107:18;;;7094:32;;6816:316;-1:-1:-1;6816:316:13:o;7137:257::-;7178:3;7216:5;7210:12;7243:6;7238:3;7231:19;7259:63;7315:6;7308:4;7303:3;7299:14;7292:4;7285:5;7281:16;7259:63;:::i;:::-;7376:2;7355:15;-1:-1:-1;;7351:29:13;7342:39;;;;7383:4;7338:50;;7137:257;-1:-1:-1;;7137:257:13:o;7399:1527::-;7623:3;7661:6;7655:13;7687:4;7700:51;7744:6;7739:3;7734:2;7726:6;7722:15;7700:51;:::i;:::-;7814:13;;7773:16;;;;7836:55;7814:13;7773:16;7858:15;;;7836:55;:::i;:::-;7980:13;;7913:20;;;7953:1;;8040;8062:18;;;;8115;;;;8142:93;;8220:4;8210:8;8206:19;8194:31;;8142:93;8283:2;8273:8;8270:16;8250:18;8247:40;8244:167;;;-1:-1:-1;;;8310:33:13;;8366:4;8363:1;8356:15;8396:4;8317:3;8384:17;8244:167;8427:18;8454:110;;;;8578:1;8573:328;;;;8420:481;;8454:110;-1:-1:-1;;8489:24:13;;8475:39;;8534:20;;;;-1:-1:-1;8454:110:13;;8573:328;20732:1;20725:14;;;20769:4;20756:18;;8668:1;8682:169;8696:8;8693:1;8690:15;8682:169;;;8778:14;;8763:13;;;8756:37;8821:16;;;;8713:10;;8682:169;;;8686:3;;8882:8;8875:5;8871:20;8864:27;;8420:481;-1:-1:-1;8917:3:13;;7399:1527;-1:-1:-1;;;;;;;;;;;7399:1527:13:o;9139:488::-;-1:-1:-1;;;;;9408:15:13;;;9390:34;;9460:15;;9455:2;9440:18;;9433:43;9507:2;9492:18;;9485:34;;;9555:3;9550:2;9535:18;;9528:31;;;9333:4;;9576:45;;9601:19;;9593:6;9576:45;:::i;:::-;9568:53;9139:488;-1:-1:-1;;;;;;9139:488:13:o;9982:632::-;10153:2;10205:21;;;10275:13;;10178:18;;;10297:22;;;10124:4;;10153:2;10376:15;;;;10350:2;10335:18;;;10124:4;10419:169;10433:6;10430:1;10427:13;10419:169;;;10494:13;;10482:26;;10563:15;;;;10528:12;;;;10455:1;10448:9;10419:169;;;-1:-1:-1;10605:3:13;;9982:632;-1:-1:-1;;;;;;9982:632:13:o;10811:219::-;10960:2;10949:9;10942:21;10923:4;10980:44;11020:2;11009:9;11005:18;10997:6;10980:44;:::i;11447:414::-;11649:2;11631:21;;;11688:2;11668:18;;;11661:30;11727:34;11722:2;11707:18;;11700:62;-1:-1:-1;;;11793:2:13;11778:18;;11771:48;11851:3;11836:19;;11447:414::o;16948:356::-;17150:2;17132:21;;;17169:18;;;17162:30;17228:34;17223:2;17208:18;;17201:62;17295:2;17280:18;;16948:356::o;18135:403::-;18337:2;18319:21;;;18376:2;18356:18;;;18349:30;18415:34;18410:2;18395:18;;18388:62;-1:-1:-1;;;18481:2:13;18466:18;;18459:37;18528:3;18513:19;;18135:403::o;19358:412::-;19560:2;19542:21;;;19599:2;19579:18;;;19572:30;19638:34;19633:2;19618:18;;19611:62;-1:-1:-1;;;19704:2:13;19689:18;;19682:46;19760:3;19745:19;;19358:412::o;20379:275::-;20450:2;20444:9;20515:2;20496:13;;-1:-1:-1;;20492:27:13;20480:40;;20550:18;20535:34;;20571:22;;;20532:62;20529:88;;;20597:18;;:::i;:::-;20633:2;20626:22;20379:275;;-1:-1:-1;20379:275:13:o;20785:128::-;20825:3;20856:1;20852:6;20849:1;20846:13;20843:39;;;20862:18;;:::i;:::-;-1:-1:-1;20898:9:13;;20785:128::o;20918:120::-;20958:1;20984;20974:35;;20989:18;;:::i;:::-;-1:-1:-1;21023:9:13;;20918:120::o;21043:168::-;21083:7;21149:1;21145;21141:6;21137:14;21134:1;21131:21;21126:1;21119:9;21112:17;21108:45;21105:71;;;21156:18;;:::i;:::-;-1:-1:-1;21196:9:13;;21043:168::o;21216:125::-;21256:4;21284:1;21281;21278:8;21275:34;;;21289:18;;:::i;:::-;-1:-1:-1;21326:9:13;;21216:125::o;21346:258::-;21418:1;21428:113;21442:6;21439:1;21436:13;21428:113;;;21518:11;;;21512:18;21499:11;;;21492:39;21464:2;21457:10;21428:113;;;21559:6;21556:1;21553:13;21550:48;;;-1:-1:-1;;21594:1:13;21576:16;;21569:27;21346:258::o;21609:380::-;21688:1;21684:12;;;;21731;;;21752:61;;21806:4;21798:6;21794:17;21784:27;;21752:61;21859:2;21851:6;21848:14;21828:18;21825:38;21822:161;;;21905:10;21900:3;21896:20;21893:1;21886:31;21940:4;21937:1;21930:15;21968:4;21965:1;21958:15;21822:161;;21609:380;;;:::o;21994:135::-;22033:3;-1:-1:-1;;22054:17:13;;22051:43;;;22074:18;;:::i;:::-;-1:-1:-1;22121:1:13;22110:13;;21994:135::o;22134:112::-;22166:1;22192;22182:35;;22197:18;;:::i;:::-;-1:-1:-1;22231:9:13;;22134:112::o;22251:127::-;22312:10;22307:3;22303:20;22300:1;22293:31;22343:4;22340:1;22333:15;22367:4;22364:1;22357:15;22383:127;22444:10;22439:3;22435:20;22432:1;22425:31;22475:4;22472:1;22465:15;22499:4;22496:1;22489:15;22515:127;22576:10;22571:3;22567:20;22564:1;22557:31;22607:4;22604:1;22597:15;22631:4;22628:1;22621:15;22647:127;22708:10;22703:3;22699:20;22696:1;22689:31;22739:4;22736:1;22729:15;22763:4;22760:1;22753:15;22779:127;22840:10;22835:3;22831:20;22828:1;22821:31;22871:4;22868:1;22861:15;22895:4;22892:1;22885:15;22911:131;-1:-1:-1;;;;;22986:31:13;;22976:42;;22966:70;;23032:1;23029;23022:12;23047:131;-1:-1:-1;;;;;;23121:32:13;;23111:43;;23101:71;;23168:1;23165;23158:12

Swarm Source

ipfs://0821347ab4fdbbc64294d6b0c2a441da49a317168a3b76ce46899de982db4cef
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.