ETH Price: $3,355.70 (-1.79%)
Gas: 6 Gwei

Token

Diamond Crypto Dunks (DCD)
 

Overview

Max Total Supply

4,200 DCD

Holders

1,555

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 DCD
0xe34de2d9dB3cFCAb890c1c67D3B3cD267c277b51
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Diamond Crypto Dunks is a collection of unique NFT’s with multiple rarity combinations designed by Nicky Diamonds. Each NFT is unique in order to prioritize rarity and quality.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DiamondCryptoDunks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

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

abstract contract ADAMBOMBSQUAD {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './DiamondFunctions.sol';
import './Metadata.sol';

contract DiamondCryptoDunks is ERC721Enumerable, Ownable, Functions, Metadata {
  using Strings for uint256;
  
  ADAMBOMBSQUAD private adambombsquad;

  //globallimits
  uint256 public constant AIRDROP = 871;
  uint256 public constant NFT_MAX = 15000;
 
  //limitsperwallet
  uint256 public constant PURCHASE_LIMIT = 20;
  uint256 public constant ABS_MAX = 20;
  uint256 public constant FIRESTARTER1 = 10;
  uint256 public constant FIRESTARTER2 = 20;

  //pricepertype
  uint256 private pricemain = 0.08 ether;
  uint256 private pricewhitelist = 0.07 ether;
 
  //switches
  bool public isMasterActive = false;
  
  bool public isPresaleActive = false;
  bool public isWhitelistActive = false;
  bool public isBombSquadActive = false;
  bool public isFirestarterActive = false;
  bool public isPublicActive = false;
 
  //supplycounters
  uint256 public totalReserveSupply;
  uint256 public totalAirdropSupply;
  uint256 public totalPresaleSupply;
  uint256 public totalBombSquadSupply;
  uint256 public totalWhitelistSupply;
  uint256 public totalFirestarter1Supply;
  uint256 public totalFirestarter2Supply;
  uint256 public totalFirestarter3Supply;
  uint256 public totalFirestarter4Supply;
  uint256 public totalFirestarter5Supply;
  uint256 public totalPublicSupply;

  //lists
  mapping(address => bool) private _Presale;
  mapping(address => uint256) private _PresaleClaimed;
  mapping(address => bool) private _Whitelist;
  mapping(address => uint256) private _WhitelistClaimed;
  mapping(address => bool) private _Firestarter1;
  mapping(address => uint256) private _Firestarter1Claimed;
  mapping(address => bool) private _Firestarter2;
  mapping(address => uint256) private _Firestarter2Claimed;
  
  //metadata
  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';
  
  //constructor
  constructor(
      string memory name, 
      string memory symbol, 
      address adambombsquadContractAddress)
      
        ERC721(name, symbol) {
 
             adambombsquad = ADAMBOMBSQUAD(adambombsquadContractAddress);
        }
 
    //presale
  function addToPresale(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Presale[addresses[i]] = true;
      _PresaleClaimed[addresses[i]] > 0 ? _PresaleClaimed[addresses[i]] : 0;
    }
  }
  
  function onPresale(address addr) external view override returns (bool) {
    return _Presale[addr];
  }
  
  function removeFromPresale(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Presale[addresses[i]] = false;
    }
  }
  
  function PresaleClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _PresaleClaimed[owner];
  }          
        
   //whitelist
  function addToWhitelist(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Whitelist[addresses[i]] = true;
      _WhitelistClaimed[addresses[i]] > 0 ? _WhitelistClaimed[addresses[i]] : 0;
    }
  }
  
  function onWhitelist(address addr) external view override returns (bool) {
    return _Whitelist[addr];
  }
  
  function removeFromWhitelist(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Whitelist[addresses[i]] = false;
    }
  }
  
  function WhitelistClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _WhitelistClaimed[owner];
  }  
  
    //firestarter tier 1
  function addToFirestarter1(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Firestarter1[addresses[i]] = true;
      _Firestarter1Claimed[addresses[i]] > 0 ? _Firestarter1Claimed[addresses[i]] : 0;
    }
  }
  
  function onFirestarter1(address addr) external view override returns (bool) {
    return _Firestarter1[addr];
  }
  
  function removeFromFirestarter1(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Firestarter1[addresses[i]] = false;
    }
  }
  
  function Firestarter1ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Firestarter1Claimed[owner];
  }  
  
     //firestarter tier 2
  function addToFirestarter2(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Firestarter2[addresses[i]] = true;
      _Firestarter2Claimed[addresses[i]] > 0 ? _Firestarter2Claimed[addresses[i]] : 0;
    }
  }
  
  function onFirestarter2(address addr) external view override returns (bool) {
    return _Firestarter2[addr];
  }
  
  function removeFromFirestarter2(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Firestarter2[addresses[i]] = false;
    }
  }
  
  function Firestarter2ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Firestarter2Claimed[owner];
  } 
  
  
   //whitelist
  function mintwhitelist(uint256 numberOfTokens) external payable {

    //check switches
    require(isMasterActive, 'Contract is not active');
    require(isWhitelistActive, 'This portion of minting is not active');
    require(_Whitelist[msg.sender]);
    
    //supply check
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
          if(numberOfTokens >= 5) {
    require(totalSupply() + numberOfTokens + 1 <= NFT_MAX, 'Purchase would exceed max supply');
         }
           if(numberOfTokens < 5) {
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
         }
    require(balanceOf(msg.sender) <= PURCHASE_LIMIT,'You hit the max per wallet');


    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');

   
    //calculate prices
    require(pricewhitelist * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    //mint!
    
        if(numberOfTokens >= 5) {
    
    for (uint256 i = 0; i < numberOfTokens + 1; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalWhitelistSupply += 1;

      _safeMint(msg.sender, tokenId);
    }

    }
    
     if(numberOfTokens < 5) {
    
    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalWhitelistSupply += 1;

      _safeMint(msg.sender, tokenId);
    }
    
    }

    }
  

  //presale
  function mintpresale(uint256 numberOfTokens) external payable {

    //check switches
    require(isMasterActive, 'Contract is not active');
    require(isPresaleActive, 'This portion of minting is not active');
    require(_Presale[msg.sender]);
    
    //supply check
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
      
        if(numberOfTokens >= 5) {
    require(totalSupply() + numberOfTokens + 1 <= NFT_MAX, 'Purchase would exceed max supply');
         }
           if(numberOfTokens < 5) {
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
         }

    require(balanceOf(msg.sender) <= PURCHASE_LIMIT,'You hit the max per wallet');
   
    //calculate prices
    require(pricemain * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    //mint!
    
    if(numberOfTokens >= 5) {
    
    for (uint256 i = 0; i < numberOfTokens + 1; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalPresaleSupply += 1;

      _safeMint(msg.sender, tokenId);
    }

    }
    
     if(numberOfTokens < 5) {
    
    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalPresaleSupply += 1;

      _safeMint(msg.sender, tokenId);
    }
    
    
    
    }
    
    }


  //firestarter tier 1 (presale)
  function mintfirestarter1(uint256 numberOfTokens) external payable {

    //check switches
    require(isMasterActive, 'Contract is not active');
    require(isFirestarterActive, 'This portion of minting is not active');
    require(_Firestarter1[msg.sender]);
    
    //supply check
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(numberOfTokens <= FIRESTARTER1, 'Cannot purchase this many tokens');
    require(balanceOf(msg.sender) <= FIRESTARTER1,'You hit the max per wallet');
    
          if(numberOfTokens >= 5) {
    require(totalSupply() + numberOfTokens + 1 <= NFT_MAX, 'Purchase would exceed max supply');
         }
           if(numberOfTokens < 5) {
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
         }
   
    //calculate prices
    require(pricemain * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    //mint!
    
         if(numberOfTokens >= 5) {
    
    for (uint256 i = 0; i < numberOfTokens + 1; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalFirestarter1Supply += 1;

      _safeMint(msg.sender, tokenId);
    }

    }
    
     if(numberOfTokens < 5) {
    
    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalFirestarter1Supply += 1;

      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    }

  //firestarter tier 2 (presale)
  function mintfirestarter2(uint256 numberOfTokens) external payable {

    //check switches
    require(isMasterActive, 'Contract is not active');
    require(isFirestarterActive, 'This portion of minting is not active');
    require(_Firestarter2[msg.sender]);
    
    //supply check
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(numberOfTokens <= FIRESTARTER2, 'Cannot purchase this many tokens');
    require(balanceOf(msg.sender) <= FIRESTARTER2,'You hit the max per wallet');
  
            if(numberOfTokens >= 5) {
    require(totalSupply() + numberOfTokens + 1 <= NFT_MAX, 'Purchase would exceed max supply');
         }
           if(numberOfTokens < 5) {
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
         }
   
    //calculate prices
    require(pricemain * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    //mint!
    
            if(numberOfTokens >= 5) {
    
    for (uint256 i = 0; i < numberOfTokens + 1; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalFirestarter2Supply += 1;

      _safeMint(msg.sender, tokenId);
    }

    }
    
     if(numberOfTokens < 5) {
    
    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalFirestarter2Supply += 1;

      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    }
  

  //adam bomb squad dependency mint (presale)
  function mintadambombsquad(uint256 numberOfTokens) external payable {

    //check contract balance
    uint checkbalance = adambombsquad.balanceOf(msg.sender);
    require(checkbalance > 0);

    //check switches
    require(isMasterActive, 'Contract is not active');
    require(isBombSquadActive, 'This portion of minting is not active');

    //supply check
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(numberOfTokens <= ABS_MAX, 'Cannot purchase this many tokens');
           if(numberOfTokens >= 5) {
    require(totalSupply() + numberOfTokens + 1 <= NFT_MAX, 'Purchase would exceed max supply');
         }
           if(numberOfTokens < 5) {
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
         }
    require(balanceOf(msg.sender) <= ABS_MAX,'You hit the max per wallet');
   
    //calculate prices
    require(pricemain * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    //mint!
    
            if(numberOfTokens >= 5) {
    
    for (uint256 i = 0; i < numberOfTokens + 1; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalBombSquadSupply += 1;

      _safeMint(msg.sender, tokenId);
    }

    }
    
     if(numberOfTokens < 5) {
    
    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalBombSquadSupply += 1;

      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    }
    
  //public mint
  function mintpublic(uint256 numberOfTokens) external payable {

    //check switches
    require(isMasterActive, 'Contract is not active');
    require(isPublicActive, 'This portion of minting is not active');

    //supply check
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
           if(numberOfTokens >= 5) {
    require(totalSupply() + numberOfTokens + 1 <= NFT_MAX, 'Purchase would exceed max supply');
         }
           if(numberOfTokens < 5) {
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
         }
   
    //calculate prices
    require(pricemain * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    //mint!
            if(numberOfTokens >= 5) {
    
    for (uint256 i = 0; i < numberOfTokens + 1; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalPublicSupply += 1;

      _safeMint(msg.sender, tokenId);
    }

    }
    
     if(numberOfTokens < 5) {
    
    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalSupply() + 1;
        totalPublicSupply += 1;

      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    
    }
    

    //airdrop for original contract: 0xab20d7517e46a227d0dc7da66e06ea8b68d717e1
    // no limit due to to airdrop going directly to the 447 owners
  function airdrop(address[] calldata to) external  onlyOwner {
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');

    for(uint256 i = 0; i < to.length; i++) {
      uint256 tokenId = totalSupply() + 1;
        totalAirdropSupply += 1;

      _safeMint(to[i], tokenId);
    }
  }

    
    //reserve
   // no limit due to to airdrop going directly to addresses
  function reserve(address[] calldata to) external  onlyOwner {
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');

    for(uint256 i = 0; i < to.length; i++) {
      uint256 tokenId = totalSupply() + 1;
        totalReserveSupply += 1;

      _safeMint(to[i], tokenId);
    }
  }


  //switches
  function MasterActive(bool _isMasterActive) external override onlyOwner {
    isMasterActive = _isMasterActive;
  }
  
    function PublicActive(bool _isPublicActive) external override onlyOwner {
    isPublicActive = _isPublicActive;
  }
  
    function WhitelistActive(bool _isWhitelistActive) external override onlyOwner {
    isWhitelistActive = _isWhitelistActive;
  }
  
    function PresaleActive(bool _isPresaleActive) external override onlyOwner {
    isPresaleActive = _isPresaleActive;
  }
  
      function FirestarterActive(bool _isFirestarterActive) external override onlyOwner {
    isFirestarterActive = _isFirestarterActive;
  }
  
        function BombSquadActive(bool _isBombSquadActive) external override onlyOwner {
    isBombSquadActive = _isBombSquadActive;
  }

  //withdraw    
  address Address1 = 0xBEA1A871cf6BF1fE159D2Db2dFD46D9f5FFd5C15; //nickydiamonds.eth
    
      function withdraw() onlyOwner public {
        uint balance = address(this).balance;
        payable(Address1).transfer(balance*100/100);
        payable(msg.sender).transfer(address(this).balance);
  }
    
  //metadata
  function setContractURI(string calldata URI) external override onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external override onlyOwner {
    _tokenBaseURI = URI;
  }

  function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
  }

  function contractURI() public view override returns (string memory) {
    return _contractURI;
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    /// @dev Convert string to bytes so we can check if it's empty or not.
    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString())) :
      _tokenBaseURI;
  }
}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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

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

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

pragma solidity ^0.8.0;

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

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

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

interface Functions {
    
  function addToWhitelist(address[] calldata addresses) external;

  function onWhitelist(address addr) external returns (bool);

  function removeFromWhitelist(address[] calldata addresses) external;
  
  function WhitelistClaimedBy(address owner) external returns (uint256);
  
  function addToFirestarter1(address[] calldata addresses) external;

  function onFirestarter1(address addr) external returns (bool);

  function removeFromFirestarter1(address[] calldata addresses) external;
  
  function Firestarter1ClaimedBy(address owner) external returns (uint256);
  
  function addToFirestarter2(address[] calldata addresses) external;

  function onFirestarter2(address addr) external returns (bool);

  function removeFromFirestarter2(address[] calldata addresses) external;
  
  function Firestarter2ClaimedBy(address owner) external returns (uint256);
  
  function addToPresale(address[] calldata addresses) external;

  function onPresale(address addr) external returns (bool);

  function removeFromPresale(address[] calldata addresses) external;
  
  function PresaleClaimedBy(address owner) external returns (uint256);

  function mintpresale(uint256 numberOfTokens) external payable;
  
  function mintwhitelist(uint256 numberOfTokens) external payable;
  
  function mintfirestarter1(uint256 numberOfTokens) external payable;
  
  function mintfirestarter2(uint256 numberOfTokens) external payable;
  
  function mintpublic(uint256 numberOfTokens) external payable;

  function mintadambombsquad(uint256 numberOfTokens) external payable;

  function MasterActive(bool isMasterActive) external;
  
  function PublicActive(bool isPublicActive) external;
  
  function BombSquadActive(bool isBombSquadActive) external;
  
  function WhitelistActive(bool isWhitelistActive) external;
  
  function PresaleActive(bool isPresaleActive) external;
  
  function FirestarterActive(bool _isFirestarterActive) external;

  function airdrop(address[] calldata to) external;

  function reserve(address[] calldata to) external;

  function withdraw() external;
  
}

File 5 of 15: 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 6 of 15: 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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 15: 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 11 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 15: 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 13 of 15: Metadata.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface Metadata {
  function setContractURI(string calldata URI) external;

  function setBaseURI(string calldata URI) external;

  function setRevealedBaseURI(string calldata revealedBaseURI) external;

  function contractURI() external view returns(string memory);
}

File 14 of 15: 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 15 of 15: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"adambombsquadContractAddress","type":"address"}],"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":[],"name":"ABS_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBombSquadActive","type":"bool"}],"name":"BombSquadActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FIRESTARTER1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FIRESTARTER2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Firestarter1ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Firestarter2ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFirestarterActive","type":"bool"}],"name":"FirestarterActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMasterActive","type":"bool"}],"name":"MasterActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPresaleActive","type":"bool"}],"name":"PresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"PresaleClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicActive","type":"bool"}],"name":"PublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWhitelistActive","type":"bool"}],"name":"WhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"WhitelistClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToFirestarter1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToFirestarter2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isBombSquadActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFirestarterActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMasterActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintadambombsquad","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintfirestarter1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintfirestarter2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintpresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintpublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintwhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onFirestarter1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onFirestarter2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromFirestarter1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromFirestarter2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserve","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAirdropSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBombSquadSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFirestarter1Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFirestarter2Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFirestarter3Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFirestarter4Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFirestarter5Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPresaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWhitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

67011c37937e080000600c5566f8b0a10e470000600d55600e805465ffffffffffff1916905560a06040819052600060808190526200004191602291620001a5565b506040805160208101918290526000908190526200006291602391620001a5565b506040805160208101918290526000908190526200008391602491620001a5565b50602580546001600160a01b03191673bea1a871cf6bf1fe159d2db2dfd46d9f5ffd5c15179055348015620000b757600080fd5b5060405162004b8638038062004b86833981016040819052620000da9162000318565b825183908390620000f3906000906020850190620001a5565b50805162000109906001906020840190620001a5565b50505062000126620001206200014f60201b60201c565b62000153565b600b80546001600160a01b0319166001600160a01b039290921691909117905550620003e29050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b390620003a5565b90600052602060002090601f016020900481019282620001d7576000855562000222565b82601f10620001f257805160ff191683800117855562000222565b8280016001018555821562000222579182015b828111156200022257825182559160200191906001019062000205565b506200023092915062000234565b5090565b5b8082111562000230576000815560010162000235565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200027357600080fd5b81516001600160401b03808211156200029057620002906200024b565b604051601f8301601f19908116603f01168101908282118183101715620002bb57620002bb6200024b565b81604052838152602092508683858801011115620002d857600080fd5b600091505b83821015620002fc5785820183015181830184015290820190620002dd565b838211156200030e5760008385830101525b9695505050505050565b6000806000606084860312156200032e57600080fd5b83516001600160401b03808211156200034657600080fd5b620003548783880162000261565b945060208601519150808211156200036b57600080fd5b506200037a8682870162000261565b604086015190935090506001600160a01b03811681146200039a57600080fd5b809150509250925092565b600181811c90821680620003ba57607f821691505b60208210811415620003dc57634e487b7160e01b600052602260045260246000fd5b50919050565b61479480620003f26000396000f3fe6080604052600436106104515760003560e01c8063715018a61161023f578063a9b7de3a11610139578063d682ed86116100b6578063e71f816f1161007a578063e71f816f14610cad578063e8a3d48514610ccd578063e985e9c514610ce2578063f2fde38b14610d2b578063feb5e14314610d4b57600080fd5b8063d682ed8614610c44578063d75e6110146104ad578063da39ee7014610c64578063e6a5931e14610c77578063e6e0d66d14610c8d57600080fd5b8063b414e58a116100fd578063b414e58a14610bb9578063b88d4fde14610bce578063bad8551214610bee578063c30e768414610c0e578063c87b56dd14610c2457600080fd5b8063a9b7de3a14610b50578063aabcdcaf146104ad578063aeab26be14610b63578063aef6ee1f14610b79578063b0d2eb0914610b9957600080fd5b8063938e3d7b116101c7578063a22cb4651161018b578063a22cb46514610aba578063a3330d2514610ada578063a3a213ca14610afd578063a5328b1f14610b1d578063a73d8ca714610b3057600080fd5b8063938e3d7b14610a0c57806395d89b4114610a2c5780639c81695514610a415780639e0cb3a814610a615780639e7d90de14610a8157600080fd5b8063851f46b91161020e578063851f46b91461098b5780638be3a09c146109ab5780638da5cb5b146109be5780639123468a146109dc57806391f4f96c146109f657600080fd5b8063715018a614610916578063729ad39e1461092b5780637ca448691461094b5780637f6497831461096b57600080fd5b80633ccfd60b1161035057806353d85fe4116102d85780636352211e1161029c5780636352211e1461087657806363a33b90146108965780636b5206c2146108b65780636e83843a146108d657806370a08231146108f657600080fd5b806353d85fe4146107c9578063548db174146107df57806355230eee146107ff57806355f804b31461083757806360d938dc1461085757600080fd5b806342842e0e1161031f57806342842e0e146107405780634f153fe8146107605780634f6ccce714610776578063524513d614610796578063524e438f146107b657600080fd5b80633ccfd60b146106ec5780633e075efd146107015780633f447a7c146107145780634279f2151461072a57600080fd5b80631d608659116103de5780632bb7d8bd116103a25780632bb7d8bd146106455780632c00970a1461065b5780632f745c5914610671578063338788301461069157806336870c3e146106ca57600080fd5b80631d608659146105a05780631fa0d621146105d957806322b96d0f146105ef578063238b0db31461060557806323b872dd1461062557600080fd5b8063081812fc11610425578063081812fc146104f2578063095ea7b31461052a5780630c56c7e21461054a57806318160ddd1461056a5780631d55382d1461057f57600080fd5b80622517301461045657806301ffc9a7146104785780630687a99a146104ad57806306fdde03146104d0575b600080fd5b34801561046257600080fd5b50610476610471366004613f05565b610d61565b005b34801561048457600080fd5b50610498610493366004613f90565b610e5b565b60405190151581526020015b60405180910390f35b3480156104b957600080fd5b506104c2601481565b6040519081526020016104a4565b3480156104dc57600080fd5b506104e5610e86565b6040516104a49190614005565b3480156104fe57600080fd5b5061051261050d366004614018565b610f18565b6040516001600160a01b0390911681526020016104a4565b34801561053657600080fd5b5061047661054536600461404d565b610fad565b34801561055657600080fd5b50610476610565366004614087565b6110be565b34801561057657600080fd5b506008546104c2565b34801561058b57600080fd5b50600e54610498906301000000900460ff1681565b3480156105ac57600080fd5b506104986105bb3660046140a2565b6001600160a01b03166000908152601c602052604090205460ff1690565b3480156105e557600080fd5b506104c261036781565b3480156105fb57600080fd5b506104c260185481565b34801561061157600080fd5b50610476610620366004613f05565b611102565b34801561063157600080fd5b506104766106403660046140bd565b611296565b34801561065157600080fd5b506104c260175481565b34801561066757600080fd5b506104c260165481565b34801561067d57600080fd5b506104c261068c36600461404d565b6112c7565b34801561069d57600080fd5b506104986106ac3660046140a2565b6001600160a01b03166000908152601e602052604090205460ff1690565b3480156106d657600080fd5b50600e5461049890640100000000900460ff1681565b3480156106f857600080fd5b5061047661135d565b61047661070f366004614018565b611407565b34801561072057600080fd5b506104c260155481565b34801561073657600080fd5b506104c260125481565b34801561074c57600080fd5b5061047661075b3660046140bd565b6116f2565b34801561076c57600080fd5b506104c260115481565b34801561078257600080fd5b506104c2610791366004614018565b61170d565b3480156107a257600080fd5b50600e546104989062010000900460ff1681565b6104766107c4366004614018565b6117a0565b3480156107d557600080fd5b506104c260135481565b3480156107eb57600080fd5b506104766107fa366004613f05565b611a32565b34801561080b57600080fd5b5061049861081a3660046140a2565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561084357600080fd5b506104766108523660046140f9565b611b1e565b34801561086357600080fd5b50600e5461049890610100900460ff1681565b34801561088257600080fd5b50610512610891366004614018565b611b54565b3480156108a257600080fd5b506104766108b1366004613f05565b611bcb565b3480156108c257600080fd5b506104766108d1366004614087565b611cb7565b3480156108e257600080fd5b506104766108f13660046140f9565b611cfd565b34801561090257600080fd5b506104c26109113660046140a2565b611d33565b34801561092257600080fd5b50610476611dba565b34801561093757600080fd5b50610476610946366004613f05565b611df0565b34801561095757600080fd5b50610476610966366004614087565b611ec2565b34801561097757600080fd5b50610476610986366004613f05565b611f0a565b34801561099757600080fd5b506104c26109a63660046140a2565b61209e565b6104766109b9366004614018565b6120e2565b3480156109ca57600080fd5b50600a546001600160a01b0316610512565b3480156109e857600080fd5b50600e546104989060ff1681565b348015610a0257600080fd5b506104c2600f5481565b348015610a1857600080fd5b50610476610a273660046140f9565b61235c565b348015610a3857600080fd5b506104e5612392565b348015610a4d57600080fd5b50610476610a5c366004613f05565b6123a1565b348015610a6d57600080fd5b50610476610a7c366004614087565b61248d565b348015610a8d57600080fd5b50610498610a9c3660046140a2565b6001600160a01b03166000908152601a602052604090205460ff1690565b348015610ac657600080fd5b50610476610ad5366004614159565b6124d7565b348015610ae657600080fd5b50600e546104989065010000000000900460ff1681565b348015610b0957600080fd5b506104c2610b183660046140a2565b61259c565b610476610b2b366004614018565b6125e0565b348015610b3c57600080fd5b50610476610b4b366004614087565b61285c565b610476610b5e366004614018565b612899565b348015610b6f57600080fd5b506104c260105481565b348015610b8557600080fd5b50610476610b94366004613f05565b612b16565b348015610ba557600080fd5b50610476610bb4366004614087565b612caa565b348015610bc557600080fd5b506104c2600a81565b348015610bda57600080fd5b50610476610be93660046141a2565b612cf6565b348015610bfa57600080fd5b506104c2610c093660046140a2565b612d2e565b348015610c1a57600080fd5b506104c2613a9881565b348015610c3057600080fd5b506104e5610c3f366004614018565b612d72565b348015610c5057600080fd5b50610476610c5f366004613f05565b612f2a565b610476610c72366004614018565b612fe1565b348015610c8357600080fd5b506104c260195481565b348015610c9957600080fd5b506104c2610ca83660046140a2565b61321a565b348015610cb957600080fd5b50610476610cc8366004613f05565b61325e565b348015610cd957600080fd5b506104e56133f2565b348015610cee57600080fd5b50610498610cfd36600461427e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d3757600080fd5b50610476610d463660046140a2565b613401565b348015610d5757600080fd5b506104c260145481565b600a546001600160a01b03163314610d945760405162461bcd60e51b8152600401610d8b906142a8565b60405180910390fd5b60005b81811015610e56576000838383818110610db357610db36142dd565b9050602002016020810190610dc891906140a2565b6001600160a01b03161415610def5760405162461bcd60e51b8152600401610d8b906142f3565b6000601e6000858585818110610e0757610e076142dd565b9050602002016020810190610e1c91906140a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e4e81614340565b915050610d97565b505050565b60006001600160e01b0319821663780e9d6360e01b1480610e805750610e8082613499565b92915050565b606060008054610e959061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec19061435b565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610f915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d8b565b506000908152600460205260409020546001600160a01b031690565b6000610fb882611b54565b9050806001600160a01b0316836001600160a01b031614156110265760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d8b565b336001600160a01b038216148061104257506110428133610cfd565b6110b45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d8b565b610e5683836134e9565b600a546001600160a01b031633146110e85760405162461bcd60e51b8152600401610d8b906142a8565b600e80549115156101000261ff0019909216919091179055565b600a546001600160a01b0316331461112c5760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e5657600083838381811061114b5761114b6142dd565b905060200201602081019061116091906140a2565b6001600160a01b031614156111875760405162461bcd60e51b8152600401610d8b906142f3565b60016020600085858581811061119f5761119f6142dd565b90506020020160208101906111b491906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556021818585858181106111f4576111f46142dd565b905060200201602081019061120991906140a2565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611236576000611283565b6021600084848481811061124c5761124c6142dd565b905060200201602081019061126191906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061128e81614340565b91505061112f565b6112a03382613557565b6112bc5760405162461bcd60e51b8152600401610d8b90614396565b610e5683838361364e565b60006112d283611d33565b82106113345760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610d8b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146113875760405162461bcd60e51b8152600401610d8b906142a8565b60255447906001600160a01b03166108fc60646113a484826143e7565b6113ae919061441c565b6040518115909202916000818181858888f193505050501580156113d6573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015611403573d6000803e3d6000fd5b5050565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561144b57600080fd5b505afa15801561145f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114839190614430565b90506000811161149257600080fd5b600e5460ff166114b45760405162461bcd60e51b8152600401610d8b90614449565b600e546301000000900460ff166114dd5760405162461bcd60e51b8152600401610d8b90614479565b613a986114e960085490565b106115065760405162461bcd60e51b8152600401610d8b906144be565b600082116115265760405162461bcd60e51b8152600401610d8b906144f5565b60148211156115475760405162461bcd60e51b8152600401610d8b9061452c565b6005821061158f57613a988261155c60085490565b6115669190614561565b611571906001614561565b111561158f5760405162461bcd60e51b8152600401610d8b90614579565b60058210156115cd57613a98826115a560085490565b6115af9190614561565b11156115cd5760405162461bcd60e51b8152600401610d8b90614579565b60146115d833611d33565b11156115f65760405162461bcd60e51b8152600401610d8b906145ae565b3482600c5461160591906143e7565b11156116235760405162461bcd60e51b8152600401610d8b906145e5565b600582106116905760005b611639836001614561565b81101561168e57600061164b60085490565b611656906001614561565b905060016012600082825461166b9190614561565b9091555061167b905033826137f9565b508061168681614340565b91505061162e565b505b60058210156114035760005b82811015610e565760006116af60085490565b6116ba906001614561565b90506001601260008282546116cf9190614561565b909155506116df905033826137f9565b50806116ea81614340565b91505061169c565b610e5683838360405180602001604052806000815250612cf6565b600061171860085490565b821061177b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610d8b565b6008828154811061178e5761178e6142dd565b90600052602060002001549050919050565b600e5460ff166117c25760405162461bcd60e51b8152600401610d8b90614449565b600e5462010000900460ff166117ea5760405162461bcd60e51b8152600401610d8b90614479565b336000908152601c602052604090205460ff1661180657600080fd5b613a9861181260085490565b1061182f5760405162461bcd60e51b8152600401610d8b906144be565b6000811161184f5760405162461bcd60e51b8152600401610d8b906144f5565b6005811061189757613a988161186460085490565b61186e9190614561565b611879906001614561565b11156118975760405162461bcd60e51b8152600401610d8b90614579565b60058110156118d557613a98816118ad60085490565b6118b79190614561565b11156118d55760405162461bcd60e51b8152600401610d8b90614579565b60146118e033611d33565b11156118fe5760405162461bcd60e51b8152600401610d8b906145ae565b613a988161190b60085490565b6119159190614561565b11156119335760405162461bcd60e51b8152600401610d8b90614579565b3481600d5461194291906143e7565b11156119605760405162461bcd60e51b8152600401610d8b906145e5565b600581106119cd5760005b611976826001614561565b8110156119cb57600061198860085490565b611993906001614561565b90506001601360008282546119a89190614561565b909155506119b8905033826137f9565b50806119c381614340565b91505061196b565b505b6005811015611a2f5760005b818110156114035760006119ec60085490565b6119f7906001614561565b9050600160136000828254611a0c9190614561565b90915550611a1c905033826137f9565b5080611a2781614340565b9150506119d9565b50565b600a546001600160a01b03163314611a5c5760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110611a7b57611a7b6142dd565b9050602002016020810190611a9091906140a2565b6001600160a01b03161415611ab75760405162461bcd60e51b8152600401610d8b906142f3565b6000601c6000858585818110611acf57611acf6142dd565b9050602002016020810190611ae491906140a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611b1681614340565b915050611a5f565b600a546001600160a01b03163314611b485760405162461bcd60e51b8152600401610d8b906142a8565b610e5660238383613e6c565b6000818152600260205260408120546001600160a01b031680610e805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d8b565b600a546001600160a01b03163314611bf55760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110611c1457611c146142dd565b9050602002016020810190611c2991906140a2565b6001600160a01b03161415611c505760405162461bcd60e51b8152600401610d8b906142f3565b600060206000858585818110611c6857611c686142dd565b9050602002016020810190611c7d91906140a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611caf81614340565b915050611bf8565b600a546001600160a01b03163314611ce15760405162461bcd60e51b8152600401610d8b906142a8565b600e8054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314611d275760405162461bcd60e51b8152600401610d8b906142a8565b610e5660248383613e6c565b60006001600160a01b038216611d9e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d8b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611de45760405162461bcd60e51b8152600401610d8b906142a8565b611dee6000613813565b565b600a546001600160a01b03163314611e1a5760405162461bcd60e51b8152600401610d8b906142a8565b613a98611e2660085490565b10611e435760405162461bcd60e51b8152600401610d8b906144be565b60005b81811015610e56576000611e5960085490565b611e64906001614561565b9050600160106000828254611e799190614561565b90915550611eaf9050848484818110611e9457611e946142dd565b9050602002016020810190611ea991906140a2565b826137f9565b5080611eba81614340565b915050611e46565b600a546001600160a01b03163314611eec5760405162461bcd60e51b8152600401610d8b906142a8565b600e805491151563010000000263ff00000019909216919091179055565b600a546001600160a01b03163314611f345760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110611f5357611f536142dd565b9050602002016020810190611f6891906140a2565b6001600160a01b03161415611f8f5760405162461bcd60e51b8152600401610d8b906142f3565b6001601c6000858585818110611fa757611fa76142dd565b9050602002016020810190611fbc91906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601d81858585818110611ffc57611ffc6142dd565b905060200201602081019061201191906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161203e57600061208b565b601d6000848484818110612054576120546142dd565b905060200201602081019061206991906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061209681614340565b915050611f37565b60006001600160a01b0382166120c65760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b03166000908152601b602052604090205490565b600e5460ff166121045760405162461bcd60e51b8152600401610d8b90614449565b600e54610100900460ff1661212b5760405162461bcd60e51b8152600401610d8b90614479565b336000908152601a602052604090205460ff1661214757600080fd5b613a9861215360085490565b106121705760405162461bcd60e51b8152600401610d8b906144be565b600081116121905760405162461bcd60e51b8152600401610d8b906144f5565b60148111156121b15760405162461bcd60e51b8152600401610d8b9061452c565b600581106121f957613a98816121c660085490565b6121d09190614561565b6121db906001614561565b11156121f95760405162461bcd60e51b8152600401610d8b90614579565b600581101561223757613a988161220f60085490565b6122199190614561565b11156122375760405162461bcd60e51b8152600401610d8b90614579565b601461224233611d33565b11156122605760405162461bcd60e51b8152600401610d8b906145ae565b3481600c5461226f91906143e7565b111561228d5760405162461bcd60e51b8152600401610d8b906145e5565b600581106122fa5760005b6122a3826001614561565b8110156122f85760006122b560085490565b6122c0906001614561565b90506001601160008282546122d59190614561565b909155506122e5905033826137f9565b50806122f081614340565b915050612298565b505b6005811015611a2f5760005b8181101561140357600061231960085490565b612324906001614561565b90506001601160008282546123399190614561565b90915550612349905033826137f9565b508061235481614340565b915050612306565b600a546001600160a01b031633146123865760405162461bcd60e51b8152600401610d8b906142a8565b610e5660228383613e6c565b606060018054610e959061435b565b600a546001600160a01b031633146123cb5760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e565760008383838181106123ea576123ea6142dd565b90506020020160208101906123ff91906140a2565b6001600160a01b031614156124265760405162461bcd60e51b8152600401610d8b906142f3565b6000601a600085858581811061243e5761243e6142dd565b905060200201602081019061245391906140a2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061248581614340565b9150506123ce565b600a546001600160a01b031633146124b75760405162461bcd60e51b8152600401610d8b906142a8565b600e80549115156401000000000264ff0000000019909216919091179055565b6001600160a01b0382163314156125305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d8b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600160a01b0382166125c45760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b031660009081526021602052604090205490565b600e5460ff166126025760405162461bcd60e51b8152600401610d8b90614449565b600e54640100000000900460ff1661262c5760405162461bcd60e51b8152600401610d8b90614479565b33600090815260208052604090205460ff1661264757600080fd5b613a9861265360085490565b106126705760405162461bcd60e51b8152600401610d8b906144be565b600081116126905760405162461bcd60e51b8152600401610d8b906144f5565b60148111156126b15760405162461bcd60e51b8152600401610d8b9061452c565b60146126bc33611d33565b11156126da5760405162461bcd60e51b8152600401610d8b906145ae565b6005811061272257613a98816126ef60085490565b6126f99190614561565b612704906001614561565b11156127225760405162461bcd60e51b8152600401610d8b90614579565b600581101561276057613a988161273860085490565b6127429190614561565b11156127605760405162461bcd60e51b8152600401610d8b90614579565b3481600c5461276f91906143e7565b111561278d5760405162461bcd60e51b8152600401610d8b906145e5565b600581106127fa5760005b6127a3826001614561565b8110156127f85760006127b560085490565b6127c0906001614561565b90506001601560008282546127d59190614561565b909155506127e5905033826137f9565b50806127f081614340565b915050612798565b505b6005811015611a2f5760005b8181101561140357600061281960085490565b612824906001614561565b90506001601560008282546128399190614561565b90915550612849905033826137f9565b508061285481614340565b915050612806565b600a546001600160a01b031633146128865760405162461bcd60e51b8152600401610d8b906142a8565b600e805460ff1916911515919091179055565b600e5460ff166128bb5760405162461bcd60e51b8152600401610d8b90614449565b600e54640100000000900460ff166128e55760405162461bcd60e51b8152600401610d8b90614479565b336000908152601e602052604090205460ff1661290157600080fd5b613a9861290d60085490565b1061292a5760405162461bcd60e51b8152600401610d8b906144be565b6000811161294a5760405162461bcd60e51b8152600401610d8b906144f5565b600a81111561296b5760405162461bcd60e51b8152600401610d8b9061452c565b600a61297633611d33565b11156129945760405162461bcd60e51b8152600401610d8b906145ae565b600581106129dc57613a98816129a960085490565b6129b39190614561565b6129be906001614561565b11156129dc5760405162461bcd60e51b8152600401610d8b90614579565b6005811015612a1a57613a98816129f260085490565b6129fc9190614561565b1115612a1a5760405162461bcd60e51b8152600401610d8b90614579565b3481600c54612a2991906143e7565b1115612a475760405162461bcd60e51b8152600401610d8b906145e5565b60058110612ab45760005b612a5d826001614561565b811015612ab2576000612a6f60085490565b612a7a906001614561565b9050600160146000828254612a8f9190614561565b90915550612a9f905033826137f9565b5080612aaa81614340565b915050612a52565b505b6005811015611a2f5760005b81811015611403576000612ad360085490565b612ade906001614561565b9050600160146000828254612af39190614561565b90915550612b03905033826137f9565b5080612b0e81614340565b915050612ac0565b600a546001600160a01b03163314612b405760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110612b5f57612b5f6142dd565b9050602002016020810190612b7491906140a2565b6001600160a01b03161415612b9b5760405162461bcd60e51b8152600401610d8b906142f3565b6001601a6000858585818110612bb357612bb36142dd565b9050602002016020810190612bc891906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601b81858585818110612c0857612c086142dd565b9050602002016020810190612c1d91906140a2565b6001600160a01b03166001600160a01b031681526020019081526020016000205411612c4a576000612c97565b601b6000848484818110612c6057612c606142dd565b9050602002016020810190612c7591906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080612ca281614340565b915050612b43565b600a546001600160a01b03163314612cd45760405162461bcd60e51b8152600401610d8b906142a8565b600e8054911515650100000000000265ff000000000019909216919091179055565b612d003383613557565b612d1c5760405162461bcd60e51b8152600401610d8b90614396565b612d2884848484613865565b50505050565b60006001600160a01b038216612d565760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b03166000908152601d602052604090205490565b6000818152600260205260409020546060906001600160a01b0316612dd05760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610d8b565b600060248054612ddf9061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054612e0b9061435b565b8015612e585780601f10612e2d57610100808354040283529160200191612e58565b820191906000526020600020905b815481529060010190602001808311612e3b57829003601f168201915b505050505090506000815111612ef85760238054612e759061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054612ea19061435b565b8015612eee5780601f10612ec357610100808354040283529160200191612eee565b820191906000526020600020905b815481529060010190602001808311612ed157829003601f168201915b5050505050612f23565b80612f0284613898565b604051602001612f13929190614642565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314612f545760405162461bcd60e51b8152600401610d8b906142a8565b613a98612f6060085490565b10612f7d5760405162461bcd60e51b8152600401610d8b906144be565b60005b81811015610e56576000612f9360085490565b612f9e906001614561565b90506001600f6000828254612fb39190614561565b90915550612fce9050848484818110611e9457611e946142dd565b5080612fd981614340565b915050612f80565b600e5460ff166130035760405162461bcd60e51b8152600401610d8b90614449565b600e5465010000000000900460ff1661302e5760405162461bcd60e51b8152600401610d8b90614479565b613a9861303a60085490565b106130575760405162461bcd60e51b8152600401610d8b906144be565b600081116130775760405162461bcd60e51b8152600401610d8b906144f5565b60148111156130985760405162461bcd60e51b8152600401610d8b9061452c565b600581106130e057613a98816130ad60085490565b6130b79190614561565b6130c2906001614561565b11156130e05760405162461bcd60e51b8152600401610d8b90614579565b600581101561311e57613a98816130f660085490565b6131009190614561565b111561311e5760405162461bcd60e51b8152600401610d8b90614579565b3481600c5461312d91906143e7565b111561314b5760405162461bcd60e51b8152600401610d8b906145e5565b600581106131b85760005b613161826001614561565b8110156131b657600061317360085490565b61317e906001614561565b90506001601960008282546131939190614561565b909155506131a3905033826137f9565b50806131ae81614340565b915050613156565b505b6005811015611a2f5760005b818110156114035760006131d760085490565b6131e2906001614561565b90506001601960008282546131f79190614561565b90915550613207905033826137f9565b508061321281614340565b9150506131c4565b60006001600160a01b0382166132425760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b03166000908152601f602052604090205490565b600a546001600160a01b031633146132885760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e565760008383838181106132a7576132a76142dd565b90506020020160208101906132bc91906140a2565b6001600160a01b031614156132e35760405162461bcd60e51b8152600401610d8b906142f3565b6001601e60008585858181106132fb576132fb6142dd565b905060200201602081019061331091906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601f81858585818110613350576133506142dd565b905060200201602081019061336591906140a2565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116133925760006133df565b601f60008484848181106133a8576133a86142dd565b90506020020160208101906133bd91906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806133ea81614340565b91505061328b565b606060228054610e959061435b565b600a546001600160a01b0316331461342b5760405162461bcd60e51b8152600401610d8b906142a8565b6001600160a01b0381166134905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d8b565b611a2f81613813565b60006001600160e01b031982166380ac58cd60e01b14806134ca57506001600160e01b03198216635b5e139f60e01b145b80610e8057506301ffc9a760e01b6001600160e01b0319831614610e80565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061351e82611b54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166135d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d8b565b60006135db83611b54565b9050806001600160a01b0316846001600160a01b031614806136165750836001600160a01b031661360b84610f18565b6001600160a01b0316145b8061364657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661366182611b54565b6001600160a01b0316146136c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610d8b565b6001600160a01b03821661372b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d8b565b613736838383613996565b6137416000826134e9565b6001600160a01b038316600090815260036020526040812080546001929061376a908490614671565b90915550506001600160a01b0382166000908152600360205260408120805460019290613798908490614561565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611403828260405180602001604052806000815250613a4e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61387084848461364e565b61387c84848484613a81565b612d285760405162461bcd60e51b8152600401610d8b90614688565b6060816138bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156138e657806138d081614340565b91506138df9050600a8361441c565b91506138c0565b60008167ffffffffffffffff8111156139015761390161418c565b6040519080825280601f01601f19166020018201604052801561392b576020820181803683370190505b5090505b841561364657613940600183614671565b915061394d600a866146da565b613958906030614561565b60f81b81838151811061396d5761396d6142dd565b60200101906001600160f81b031916908160001a90535061398f600a8661441c565b945061392f565b6001600160a01b0383166139f1576139ec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613a14565b816001600160a01b0316836001600160a01b031614613a1457613a148382613b8e565b6001600160a01b038216613a2b57610e5681613c2b565b826001600160a01b0316826001600160a01b031614610e5657610e568282613cda565b613a588383613d1e565b613a656000848484613a81565b610e565760405162461bcd60e51b8152600401610d8b90614688565b60006001600160a01b0384163b15613b8357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613ac59033908990889088906004016146ee565b602060405180830381600087803b158015613adf57600080fd5b505af1925050508015613b0f575060408051601f3d908101601f19168201909252613b0c9181019061472b565b60015b613b69573d808015613b3d576040519150601f19603f3d011682016040523d82523d6000602084013e613b42565b606091505b508051613b615760405162461bcd60e51b8152600401610d8b90614688565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613646565b506001949350505050565b60006001613b9b84611d33565b613ba59190614671565b600083815260076020526040902054909150808214613bf8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613c3d90600190614671565b60008381526009602052604081205460088054939450909284908110613c6557613c656142dd565b906000526020600020015490508060088381548110613c8657613c866142dd565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613cbe57613cbe614748565b6001900381819060005260206000200160009055905550505050565b6000613ce583611d33565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216613d745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d8b565b6000818152600260205260409020546001600160a01b031615613dd95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d8b565b613de560008383613996565b6001600160a01b0382166000908152600360205260408120805460019290613e0e908490614561565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613e789061435b565b90600052602060002090601f016020900481019282613e9a5760008555613ee0565b82601f10613eb35782800160ff19823516178555613ee0565b82800160010185558215613ee0579182015b82811115613ee0578235825591602001919060010190613ec5565b50613eec929150613ef0565b5090565b5b80821115613eec5760008155600101613ef1565b60008060208385031215613f1857600080fd5b823567ffffffffffffffff80821115613f3057600080fd5b818501915085601f830112613f4457600080fd5b813581811115613f5357600080fd5b8660208260051b8501011115613f6857600080fd5b60209290920196919550909350505050565b6001600160e01b031981168114611a2f57600080fd5b600060208284031215613fa257600080fd5b8135612f2381613f7a565b60005b83811015613fc8578181015183820152602001613fb0565b83811115612d285750506000910152565b60008151808452613ff1816020860160208601613fad565b601f01601f19169290920160200192915050565b602081526000612f236020830184613fd9565b60006020828403121561402a57600080fd5b5035919050565b80356001600160a01b038116811461404857600080fd5b919050565b6000806040838503121561406057600080fd5b61406983614031565b946020939093013593505050565b8035801515811461404857600080fd5b60006020828403121561409957600080fd5b612f2382614077565b6000602082840312156140b457600080fd5b612f2382614031565b6000806000606084860312156140d257600080fd5b6140db84614031565b92506140e960208501614031565b9150604084013590509250925092565b6000806020838503121561410c57600080fd5b823567ffffffffffffffff8082111561412457600080fd5b818501915085601f83011261413857600080fd5b81358181111561414757600080fd5b866020828501011115613f6857600080fd5b6000806040838503121561416c57600080fd5b61417583614031565b915061418360208401614077565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156141b857600080fd5b6141c185614031565b93506141cf60208601614031565b925060408501359150606085013567ffffffffffffffff808211156141f357600080fd5b818701915087601f83011261420757600080fd5b8135818111156142195761421961418c565b604051601f8201601f19908116603f011681019083821181831017156142415761424161418c565b816040528281528a602084870101111561425a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561429157600080fd5b61429a83614031565b915061418360208401614031565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156143545761435461432a565b5060010190565b600181811c9082168061436f57607f821691505b6020821081141561439057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156144015761440161432a565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261442b5761442b614406565b500490565b60006020828403121561444257600080fd5b5051919050565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526025908201527f5468697320706f7274696f6e206f66206d696e74696e67206973206e6f742061604082015264637469766560d81b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252601f908201527f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b600082198211156145745761457461432a565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252601a908201527f596f752068697420746865206d6178207065722077616c6c6574000000000000604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60008351614654818460208801613fad565b835190830190614668818360208801613fad565b01949350505050565b6000828210156146835761468361432a565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826146e9576146e9614406565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061472190830184613fd9565b9695505050505050565b60006020828403121561473d57600080fd5b8151612f2381613f7a565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204b7074c4df3a11f69759a46fd578642f878fe3632780be899ba3be766084130b64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007ab2352b1d2e185560494d5e577f9d3c238b78c500000000000000000000000000000000000000000000000000000000000000144469616d6f6e642043727970746f2044756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000034443440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106104515760003560e01c8063715018a61161023f578063a9b7de3a11610139578063d682ed86116100b6578063e71f816f1161007a578063e71f816f14610cad578063e8a3d48514610ccd578063e985e9c514610ce2578063f2fde38b14610d2b578063feb5e14314610d4b57600080fd5b8063d682ed8614610c44578063d75e6110146104ad578063da39ee7014610c64578063e6a5931e14610c77578063e6e0d66d14610c8d57600080fd5b8063b414e58a116100fd578063b414e58a14610bb9578063b88d4fde14610bce578063bad8551214610bee578063c30e768414610c0e578063c87b56dd14610c2457600080fd5b8063a9b7de3a14610b50578063aabcdcaf146104ad578063aeab26be14610b63578063aef6ee1f14610b79578063b0d2eb0914610b9957600080fd5b8063938e3d7b116101c7578063a22cb4651161018b578063a22cb46514610aba578063a3330d2514610ada578063a3a213ca14610afd578063a5328b1f14610b1d578063a73d8ca714610b3057600080fd5b8063938e3d7b14610a0c57806395d89b4114610a2c5780639c81695514610a415780639e0cb3a814610a615780639e7d90de14610a8157600080fd5b8063851f46b91161020e578063851f46b91461098b5780638be3a09c146109ab5780638da5cb5b146109be5780639123468a146109dc57806391f4f96c146109f657600080fd5b8063715018a614610916578063729ad39e1461092b5780637ca448691461094b5780637f6497831461096b57600080fd5b80633ccfd60b1161035057806353d85fe4116102d85780636352211e1161029c5780636352211e1461087657806363a33b90146108965780636b5206c2146108b65780636e83843a146108d657806370a08231146108f657600080fd5b806353d85fe4146107c9578063548db174146107df57806355230eee146107ff57806355f804b31461083757806360d938dc1461085757600080fd5b806342842e0e1161031f57806342842e0e146107405780634f153fe8146107605780634f6ccce714610776578063524513d614610796578063524e438f146107b657600080fd5b80633ccfd60b146106ec5780633e075efd146107015780633f447a7c146107145780634279f2151461072a57600080fd5b80631d608659116103de5780632bb7d8bd116103a25780632bb7d8bd146106455780632c00970a1461065b5780632f745c5914610671578063338788301461069157806336870c3e146106ca57600080fd5b80631d608659146105a05780631fa0d621146105d957806322b96d0f146105ef578063238b0db31461060557806323b872dd1461062557600080fd5b8063081812fc11610425578063081812fc146104f2578063095ea7b31461052a5780630c56c7e21461054a57806318160ddd1461056a5780631d55382d1461057f57600080fd5b80622517301461045657806301ffc9a7146104785780630687a99a146104ad57806306fdde03146104d0575b600080fd5b34801561046257600080fd5b50610476610471366004613f05565b610d61565b005b34801561048457600080fd5b50610498610493366004613f90565b610e5b565b60405190151581526020015b60405180910390f35b3480156104b957600080fd5b506104c2601481565b6040519081526020016104a4565b3480156104dc57600080fd5b506104e5610e86565b6040516104a49190614005565b3480156104fe57600080fd5b5061051261050d366004614018565b610f18565b6040516001600160a01b0390911681526020016104a4565b34801561053657600080fd5b5061047661054536600461404d565b610fad565b34801561055657600080fd5b50610476610565366004614087565b6110be565b34801561057657600080fd5b506008546104c2565b34801561058b57600080fd5b50600e54610498906301000000900460ff1681565b3480156105ac57600080fd5b506104986105bb3660046140a2565b6001600160a01b03166000908152601c602052604090205460ff1690565b3480156105e557600080fd5b506104c261036781565b3480156105fb57600080fd5b506104c260185481565b34801561061157600080fd5b50610476610620366004613f05565b611102565b34801561063157600080fd5b506104766106403660046140bd565b611296565b34801561065157600080fd5b506104c260175481565b34801561066757600080fd5b506104c260165481565b34801561067d57600080fd5b506104c261068c36600461404d565b6112c7565b34801561069d57600080fd5b506104986106ac3660046140a2565b6001600160a01b03166000908152601e602052604090205460ff1690565b3480156106d657600080fd5b50600e5461049890640100000000900460ff1681565b3480156106f857600080fd5b5061047661135d565b61047661070f366004614018565b611407565b34801561072057600080fd5b506104c260155481565b34801561073657600080fd5b506104c260125481565b34801561074c57600080fd5b5061047661075b3660046140bd565b6116f2565b34801561076c57600080fd5b506104c260115481565b34801561078257600080fd5b506104c2610791366004614018565b61170d565b3480156107a257600080fd5b50600e546104989062010000900460ff1681565b6104766107c4366004614018565b6117a0565b3480156107d557600080fd5b506104c260135481565b3480156107eb57600080fd5b506104766107fa366004613f05565b611a32565b34801561080b57600080fd5b5061049861081a3660046140a2565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561084357600080fd5b506104766108523660046140f9565b611b1e565b34801561086357600080fd5b50600e5461049890610100900460ff1681565b34801561088257600080fd5b50610512610891366004614018565b611b54565b3480156108a257600080fd5b506104766108b1366004613f05565b611bcb565b3480156108c257600080fd5b506104766108d1366004614087565b611cb7565b3480156108e257600080fd5b506104766108f13660046140f9565b611cfd565b34801561090257600080fd5b506104c26109113660046140a2565b611d33565b34801561092257600080fd5b50610476611dba565b34801561093757600080fd5b50610476610946366004613f05565b611df0565b34801561095757600080fd5b50610476610966366004614087565b611ec2565b34801561097757600080fd5b50610476610986366004613f05565b611f0a565b34801561099757600080fd5b506104c26109a63660046140a2565b61209e565b6104766109b9366004614018565b6120e2565b3480156109ca57600080fd5b50600a546001600160a01b0316610512565b3480156109e857600080fd5b50600e546104989060ff1681565b348015610a0257600080fd5b506104c2600f5481565b348015610a1857600080fd5b50610476610a273660046140f9565b61235c565b348015610a3857600080fd5b506104e5612392565b348015610a4d57600080fd5b50610476610a5c366004613f05565b6123a1565b348015610a6d57600080fd5b50610476610a7c366004614087565b61248d565b348015610a8d57600080fd5b50610498610a9c3660046140a2565b6001600160a01b03166000908152601a602052604090205460ff1690565b348015610ac657600080fd5b50610476610ad5366004614159565b6124d7565b348015610ae657600080fd5b50600e546104989065010000000000900460ff1681565b348015610b0957600080fd5b506104c2610b183660046140a2565b61259c565b610476610b2b366004614018565b6125e0565b348015610b3c57600080fd5b50610476610b4b366004614087565b61285c565b610476610b5e366004614018565b612899565b348015610b6f57600080fd5b506104c260105481565b348015610b8557600080fd5b50610476610b94366004613f05565b612b16565b348015610ba557600080fd5b50610476610bb4366004614087565b612caa565b348015610bc557600080fd5b506104c2600a81565b348015610bda57600080fd5b50610476610be93660046141a2565b612cf6565b348015610bfa57600080fd5b506104c2610c093660046140a2565b612d2e565b348015610c1a57600080fd5b506104c2613a9881565b348015610c3057600080fd5b506104e5610c3f366004614018565b612d72565b348015610c5057600080fd5b50610476610c5f366004613f05565b612f2a565b610476610c72366004614018565b612fe1565b348015610c8357600080fd5b506104c260195481565b348015610c9957600080fd5b506104c2610ca83660046140a2565b61321a565b348015610cb957600080fd5b50610476610cc8366004613f05565b61325e565b348015610cd957600080fd5b506104e56133f2565b348015610cee57600080fd5b50610498610cfd36600461427e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d3757600080fd5b50610476610d463660046140a2565b613401565b348015610d5757600080fd5b506104c260145481565b600a546001600160a01b03163314610d945760405162461bcd60e51b8152600401610d8b906142a8565b60405180910390fd5b60005b81811015610e56576000838383818110610db357610db36142dd565b9050602002016020810190610dc891906140a2565b6001600160a01b03161415610def5760405162461bcd60e51b8152600401610d8b906142f3565b6000601e6000858585818110610e0757610e076142dd565b9050602002016020810190610e1c91906140a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e4e81614340565b915050610d97565b505050565b60006001600160e01b0319821663780e9d6360e01b1480610e805750610e8082613499565b92915050565b606060008054610e959061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec19061435b565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610f915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d8b565b506000908152600460205260409020546001600160a01b031690565b6000610fb882611b54565b9050806001600160a01b0316836001600160a01b031614156110265760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d8b565b336001600160a01b038216148061104257506110428133610cfd565b6110b45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d8b565b610e5683836134e9565b600a546001600160a01b031633146110e85760405162461bcd60e51b8152600401610d8b906142a8565b600e80549115156101000261ff0019909216919091179055565b600a546001600160a01b0316331461112c5760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e5657600083838381811061114b5761114b6142dd565b905060200201602081019061116091906140a2565b6001600160a01b031614156111875760405162461bcd60e51b8152600401610d8b906142f3565b60016020600085858581811061119f5761119f6142dd565b90506020020160208101906111b491906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556021818585858181106111f4576111f46142dd565b905060200201602081019061120991906140a2565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611236576000611283565b6021600084848481811061124c5761124c6142dd565b905060200201602081019061126191906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061128e81614340565b91505061112f565b6112a03382613557565b6112bc5760405162461bcd60e51b8152600401610d8b90614396565b610e5683838361364e565b60006112d283611d33565b82106113345760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610d8b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146113875760405162461bcd60e51b8152600401610d8b906142a8565b60255447906001600160a01b03166108fc60646113a484826143e7565b6113ae919061441c565b6040518115909202916000818181858888f193505050501580156113d6573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015611403573d6000803e3d6000fd5b5050565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561144b57600080fd5b505afa15801561145f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114839190614430565b90506000811161149257600080fd5b600e5460ff166114b45760405162461bcd60e51b8152600401610d8b90614449565b600e546301000000900460ff166114dd5760405162461bcd60e51b8152600401610d8b90614479565b613a986114e960085490565b106115065760405162461bcd60e51b8152600401610d8b906144be565b600082116115265760405162461bcd60e51b8152600401610d8b906144f5565b60148211156115475760405162461bcd60e51b8152600401610d8b9061452c565b6005821061158f57613a988261155c60085490565b6115669190614561565b611571906001614561565b111561158f5760405162461bcd60e51b8152600401610d8b90614579565b60058210156115cd57613a98826115a560085490565b6115af9190614561565b11156115cd5760405162461bcd60e51b8152600401610d8b90614579565b60146115d833611d33565b11156115f65760405162461bcd60e51b8152600401610d8b906145ae565b3482600c5461160591906143e7565b11156116235760405162461bcd60e51b8152600401610d8b906145e5565b600582106116905760005b611639836001614561565b81101561168e57600061164b60085490565b611656906001614561565b905060016012600082825461166b9190614561565b9091555061167b905033826137f9565b508061168681614340565b91505061162e565b505b60058210156114035760005b82811015610e565760006116af60085490565b6116ba906001614561565b90506001601260008282546116cf9190614561565b909155506116df905033826137f9565b50806116ea81614340565b91505061169c565b610e5683838360405180602001604052806000815250612cf6565b600061171860085490565b821061177b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610d8b565b6008828154811061178e5761178e6142dd565b90600052602060002001549050919050565b600e5460ff166117c25760405162461bcd60e51b8152600401610d8b90614449565b600e5462010000900460ff166117ea5760405162461bcd60e51b8152600401610d8b90614479565b336000908152601c602052604090205460ff1661180657600080fd5b613a9861181260085490565b1061182f5760405162461bcd60e51b8152600401610d8b906144be565b6000811161184f5760405162461bcd60e51b8152600401610d8b906144f5565b6005811061189757613a988161186460085490565b61186e9190614561565b611879906001614561565b11156118975760405162461bcd60e51b8152600401610d8b90614579565b60058110156118d557613a98816118ad60085490565b6118b79190614561565b11156118d55760405162461bcd60e51b8152600401610d8b90614579565b60146118e033611d33565b11156118fe5760405162461bcd60e51b8152600401610d8b906145ae565b613a988161190b60085490565b6119159190614561565b11156119335760405162461bcd60e51b8152600401610d8b90614579565b3481600d5461194291906143e7565b11156119605760405162461bcd60e51b8152600401610d8b906145e5565b600581106119cd5760005b611976826001614561565b8110156119cb57600061198860085490565b611993906001614561565b90506001601360008282546119a89190614561565b909155506119b8905033826137f9565b50806119c381614340565b91505061196b565b505b6005811015611a2f5760005b818110156114035760006119ec60085490565b6119f7906001614561565b9050600160136000828254611a0c9190614561565b90915550611a1c905033826137f9565b5080611a2781614340565b9150506119d9565b50565b600a546001600160a01b03163314611a5c5760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110611a7b57611a7b6142dd565b9050602002016020810190611a9091906140a2565b6001600160a01b03161415611ab75760405162461bcd60e51b8152600401610d8b906142f3565b6000601c6000858585818110611acf57611acf6142dd565b9050602002016020810190611ae491906140a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611b1681614340565b915050611a5f565b600a546001600160a01b03163314611b485760405162461bcd60e51b8152600401610d8b906142a8565b610e5660238383613e6c565b6000818152600260205260408120546001600160a01b031680610e805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d8b565b600a546001600160a01b03163314611bf55760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110611c1457611c146142dd565b9050602002016020810190611c2991906140a2565b6001600160a01b03161415611c505760405162461bcd60e51b8152600401610d8b906142f3565b600060206000858585818110611c6857611c686142dd565b9050602002016020810190611c7d91906140a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611caf81614340565b915050611bf8565b600a546001600160a01b03163314611ce15760405162461bcd60e51b8152600401610d8b906142a8565b600e8054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314611d275760405162461bcd60e51b8152600401610d8b906142a8565b610e5660248383613e6c565b60006001600160a01b038216611d9e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d8b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611de45760405162461bcd60e51b8152600401610d8b906142a8565b611dee6000613813565b565b600a546001600160a01b03163314611e1a5760405162461bcd60e51b8152600401610d8b906142a8565b613a98611e2660085490565b10611e435760405162461bcd60e51b8152600401610d8b906144be565b60005b81811015610e56576000611e5960085490565b611e64906001614561565b9050600160106000828254611e799190614561565b90915550611eaf9050848484818110611e9457611e946142dd565b9050602002016020810190611ea991906140a2565b826137f9565b5080611eba81614340565b915050611e46565b600a546001600160a01b03163314611eec5760405162461bcd60e51b8152600401610d8b906142a8565b600e805491151563010000000263ff00000019909216919091179055565b600a546001600160a01b03163314611f345760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110611f5357611f536142dd565b9050602002016020810190611f6891906140a2565b6001600160a01b03161415611f8f5760405162461bcd60e51b8152600401610d8b906142f3565b6001601c6000858585818110611fa757611fa76142dd565b9050602002016020810190611fbc91906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601d81858585818110611ffc57611ffc6142dd565b905060200201602081019061201191906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161203e57600061208b565b601d6000848484818110612054576120546142dd565b905060200201602081019061206991906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061209681614340565b915050611f37565b60006001600160a01b0382166120c65760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b03166000908152601b602052604090205490565b600e5460ff166121045760405162461bcd60e51b8152600401610d8b90614449565b600e54610100900460ff1661212b5760405162461bcd60e51b8152600401610d8b90614479565b336000908152601a602052604090205460ff1661214757600080fd5b613a9861215360085490565b106121705760405162461bcd60e51b8152600401610d8b906144be565b600081116121905760405162461bcd60e51b8152600401610d8b906144f5565b60148111156121b15760405162461bcd60e51b8152600401610d8b9061452c565b600581106121f957613a98816121c660085490565b6121d09190614561565b6121db906001614561565b11156121f95760405162461bcd60e51b8152600401610d8b90614579565b600581101561223757613a988161220f60085490565b6122199190614561565b11156122375760405162461bcd60e51b8152600401610d8b90614579565b601461224233611d33565b11156122605760405162461bcd60e51b8152600401610d8b906145ae565b3481600c5461226f91906143e7565b111561228d5760405162461bcd60e51b8152600401610d8b906145e5565b600581106122fa5760005b6122a3826001614561565b8110156122f85760006122b560085490565b6122c0906001614561565b90506001601160008282546122d59190614561565b909155506122e5905033826137f9565b50806122f081614340565b915050612298565b505b6005811015611a2f5760005b8181101561140357600061231960085490565b612324906001614561565b90506001601160008282546123399190614561565b90915550612349905033826137f9565b508061235481614340565b915050612306565b600a546001600160a01b031633146123865760405162461bcd60e51b8152600401610d8b906142a8565b610e5660228383613e6c565b606060018054610e959061435b565b600a546001600160a01b031633146123cb5760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e565760008383838181106123ea576123ea6142dd565b90506020020160208101906123ff91906140a2565b6001600160a01b031614156124265760405162461bcd60e51b8152600401610d8b906142f3565b6000601a600085858581811061243e5761243e6142dd565b905060200201602081019061245391906140a2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061248581614340565b9150506123ce565b600a546001600160a01b031633146124b75760405162461bcd60e51b8152600401610d8b906142a8565b600e80549115156401000000000264ff0000000019909216919091179055565b6001600160a01b0382163314156125305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d8b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600160a01b0382166125c45760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b031660009081526021602052604090205490565b600e5460ff166126025760405162461bcd60e51b8152600401610d8b90614449565b600e54640100000000900460ff1661262c5760405162461bcd60e51b8152600401610d8b90614479565b33600090815260208052604090205460ff1661264757600080fd5b613a9861265360085490565b106126705760405162461bcd60e51b8152600401610d8b906144be565b600081116126905760405162461bcd60e51b8152600401610d8b906144f5565b60148111156126b15760405162461bcd60e51b8152600401610d8b9061452c565b60146126bc33611d33565b11156126da5760405162461bcd60e51b8152600401610d8b906145ae565b6005811061272257613a98816126ef60085490565b6126f99190614561565b612704906001614561565b11156127225760405162461bcd60e51b8152600401610d8b90614579565b600581101561276057613a988161273860085490565b6127429190614561565b11156127605760405162461bcd60e51b8152600401610d8b90614579565b3481600c5461276f91906143e7565b111561278d5760405162461bcd60e51b8152600401610d8b906145e5565b600581106127fa5760005b6127a3826001614561565b8110156127f85760006127b560085490565b6127c0906001614561565b90506001601560008282546127d59190614561565b909155506127e5905033826137f9565b50806127f081614340565b915050612798565b505b6005811015611a2f5760005b8181101561140357600061281960085490565b612824906001614561565b90506001601560008282546128399190614561565b90915550612849905033826137f9565b508061285481614340565b915050612806565b600a546001600160a01b031633146128865760405162461bcd60e51b8152600401610d8b906142a8565b600e805460ff1916911515919091179055565b600e5460ff166128bb5760405162461bcd60e51b8152600401610d8b90614449565b600e54640100000000900460ff166128e55760405162461bcd60e51b8152600401610d8b90614479565b336000908152601e602052604090205460ff1661290157600080fd5b613a9861290d60085490565b1061292a5760405162461bcd60e51b8152600401610d8b906144be565b6000811161294a5760405162461bcd60e51b8152600401610d8b906144f5565b600a81111561296b5760405162461bcd60e51b8152600401610d8b9061452c565b600a61297633611d33565b11156129945760405162461bcd60e51b8152600401610d8b906145ae565b600581106129dc57613a98816129a960085490565b6129b39190614561565b6129be906001614561565b11156129dc5760405162461bcd60e51b8152600401610d8b90614579565b6005811015612a1a57613a98816129f260085490565b6129fc9190614561565b1115612a1a5760405162461bcd60e51b8152600401610d8b90614579565b3481600c54612a2991906143e7565b1115612a475760405162461bcd60e51b8152600401610d8b906145e5565b60058110612ab45760005b612a5d826001614561565b811015612ab2576000612a6f60085490565b612a7a906001614561565b9050600160146000828254612a8f9190614561565b90915550612a9f905033826137f9565b5080612aaa81614340565b915050612a52565b505b6005811015611a2f5760005b81811015611403576000612ad360085490565b612ade906001614561565b9050600160146000828254612af39190614561565b90915550612b03905033826137f9565b5080612b0e81614340565b915050612ac0565b600a546001600160a01b03163314612b405760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e56576000838383818110612b5f57612b5f6142dd565b9050602002016020810190612b7491906140a2565b6001600160a01b03161415612b9b5760405162461bcd60e51b8152600401610d8b906142f3565b6001601a6000858585818110612bb357612bb36142dd565b9050602002016020810190612bc891906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601b81858585818110612c0857612c086142dd565b9050602002016020810190612c1d91906140a2565b6001600160a01b03166001600160a01b031681526020019081526020016000205411612c4a576000612c97565b601b6000848484818110612c6057612c606142dd565b9050602002016020810190612c7591906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080612ca281614340565b915050612b43565b600a546001600160a01b03163314612cd45760405162461bcd60e51b8152600401610d8b906142a8565b600e8054911515650100000000000265ff000000000019909216919091179055565b612d003383613557565b612d1c5760405162461bcd60e51b8152600401610d8b90614396565b612d2884848484613865565b50505050565b60006001600160a01b038216612d565760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b03166000908152601d602052604090205490565b6000818152600260205260409020546060906001600160a01b0316612dd05760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610d8b565b600060248054612ddf9061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054612e0b9061435b565b8015612e585780601f10612e2d57610100808354040283529160200191612e58565b820191906000526020600020905b815481529060010190602001808311612e3b57829003601f168201915b505050505090506000815111612ef85760238054612e759061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054612ea19061435b565b8015612eee5780601f10612ec357610100808354040283529160200191612eee565b820191906000526020600020905b815481529060010190602001808311612ed157829003601f168201915b5050505050612f23565b80612f0284613898565b604051602001612f13929190614642565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314612f545760405162461bcd60e51b8152600401610d8b906142a8565b613a98612f6060085490565b10612f7d5760405162461bcd60e51b8152600401610d8b906144be565b60005b81811015610e56576000612f9360085490565b612f9e906001614561565b90506001600f6000828254612fb39190614561565b90915550612fce9050848484818110611e9457611e946142dd565b5080612fd981614340565b915050612f80565b600e5460ff166130035760405162461bcd60e51b8152600401610d8b90614449565b600e5465010000000000900460ff1661302e5760405162461bcd60e51b8152600401610d8b90614479565b613a9861303a60085490565b106130575760405162461bcd60e51b8152600401610d8b906144be565b600081116130775760405162461bcd60e51b8152600401610d8b906144f5565b60148111156130985760405162461bcd60e51b8152600401610d8b9061452c565b600581106130e057613a98816130ad60085490565b6130b79190614561565b6130c2906001614561565b11156130e05760405162461bcd60e51b8152600401610d8b90614579565b600581101561311e57613a98816130f660085490565b6131009190614561565b111561311e5760405162461bcd60e51b8152600401610d8b90614579565b3481600c5461312d91906143e7565b111561314b5760405162461bcd60e51b8152600401610d8b906145e5565b600581106131b85760005b613161826001614561565b8110156131b657600061317360085490565b61317e906001614561565b90506001601960008282546131939190614561565b909155506131a3905033826137f9565b50806131ae81614340565b915050613156565b505b6005811015611a2f5760005b818110156114035760006131d760085490565b6131e2906001614561565b90506001601960008282546131f79190614561565b90915550613207905033826137f9565b508061321281614340565b9150506131c4565b60006001600160a01b0382166132425760405162461bcd60e51b8152600401610d8b9061461c565b506001600160a01b03166000908152601f602052604090205490565b600a546001600160a01b031633146132885760405162461bcd60e51b8152600401610d8b906142a8565b60005b81811015610e565760008383838181106132a7576132a76142dd565b90506020020160208101906132bc91906140a2565b6001600160a01b031614156132e35760405162461bcd60e51b8152600401610d8b906142f3565b6001601e60008585858181106132fb576132fb6142dd565b905060200201602081019061331091906140a2565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601f81858585818110613350576133506142dd565b905060200201602081019061336591906140a2565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116133925760006133df565b601f60008484848181106133a8576133a86142dd565b90506020020160208101906133bd91906140a2565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806133ea81614340565b91505061328b565b606060228054610e959061435b565b600a546001600160a01b0316331461342b5760405162461bcd60e51b8152600401610d8b906142a8565b6001600160a01b0381166134905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d8b565b611a2f81613813565b60006001600160e01b031982166380ac58cd60e01b14806134ca57506001600160e01b03198216635b5e139f60e01b145b80610e8057506301ffc9a760e01b6001600160e01b0319831614610e80565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061351e82611b54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166135d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d8b565b60006135db83611b54565b9050806001600160a01b0316846001600160a01b031614806136165750836001600160a01b031661360b84610f18565b6001600160a01b0316145b8061364657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661366182611b54565b6001600160a01b0316146136c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610d8b565b6001600160a01b03821661372b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d8b565b613736838383613996565b6137416000826134e9565b6001600160a01b038316600090815260036020526040812080546001929061376a908490614671565b90915550506001600160a01b0382166000908152600360205260408120805460019290613798908490614561565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611403828260405180602001604052806000815250613a4e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61387084848461364e565b61387c84848484613a81565b612d285760405162461bcd60e51b8152600401610d8b90614688565b6060816138bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156138e657806138d081614340565b91506138df9050600a8361441c565b91506138c0565b60008167ffffffffffffffff8111156139015761390161418c565b6040519080825280601f01601f19166020018201604052801561392b576020820181803683370190505b5090505b841561364657613940600183614671565b915061394d600a866146da565b613958906030614561565b60f81b81838151811061396d5761396d6142dd565b60200101906001600160f81b031916908160001a90535061398f600a8661441c565b945061392f565b6001600160a01b0383166139f1576139ec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613a14565b816001600160a01b0316836001600160a01b031614613a1457613a148382613b8e565b6001600160a01b038216613a2b57610e5681613c2b565b826001600160a01b0316826001600160a01b031614610e5657610e568282613cda565b613a588383613d1e565b613a656000848484613a81565b610e565760405162461bcd60e51b8152600401610d8b90614688565b60006001600160a01b0384163b15613b8357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613ac59033908990889088906004016146ee565b602060405180830381600087803b158015613adf57600080fd5b505af1925050508015613b0f575060408051601f3d908101601f19168201909252613b0c9181019061472b565b60015b613b69573d808015613b3d576040519150601f19603f3d011682016040523d82523d6000602084013e613b42565b606091505b508051613b615760405162461bcd60e51b8152600401610d8b90614688565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613646565b506001949350505050565b60006001613b9b84611d33565b613ba59190614671565b600083815260076020526040902054909150808214613bf8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613c3d90600190614671565b60008381526009602052604081205460088054939450909284908110613c6557613c656142dd565b906000526020600020015490508060088381548110613c8657613c866142dd565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613cbe57613cbe614748565b6001900381819060005260206000200160009055905550505050565b6000613ce583611d33565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216613d745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d8b565b6000818152600260205260409020546001600160a01b031615613dd95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d8b565b613de560008383613996565b6001600160a01b0382166000908152600360205260408120805460019290613e0e908490614561565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613e789061435b565b90600052602060002090601f016020900481019282613e9a5760008555613ee0565b82601f10613eb35782800160ff19823516178555613ee0565b82800160010185558215613ee0579182015b82811115613ee0578235825591602001919060010190613ec5565b50613eec929150613ef0565b5090565b5b80821115613eec5760008155600101613ef1565b60008060208385031215613f1857600080fd5b823567ffffffffffffffff80821115613f3057600080fd5b818501915085601f830112613f4457600080fd5b813581811115613f5357600080fd5b8660208260051b8501011115613f6857600080fd5b60209290920196919550909350505050565b6001600160e01b031981168114611a2f57600080fd5b600060208284031215613fa257600080fd5b8135612f2381613f7a565b60005b83811015613fc8578181015183820152602001613fb0565b83811115612d285750506000910152565b60008151808452613ff1816020860160208601613fad565b601f01601f19169290920160200192915050565b602081526000612f236020830184613fd9565b60006020828403121561402a57600080fd5b5035919050565b80356001600160a01b038116811461404857600080fd5b919050565b6000806040838503121561406057600080fd5b61406983614031565b946020939093013593505050565b8035801515811461404857600080fd5b60006020828403121561409957600080fd5b612f2382614077565b6000602082840312156140b457600080fd5b612f2382614031565b6000806000606084860312156140d257600080fd5b6140db84614031565b92506140e960208501614031565b9150604084013590509250925092565b6000806020838503121561410c57600080fd5b823567ffffffffffffffff8082111561412457600080fd5b818501915085601f83011261413857600080fd5b81358181111561414757600080fd5b866020828501011115613f6857600080fd5b6000806040838503121561416c57600080fd5b61417583614031565b915061418360208401614077565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156141b857600080fd5b6141c185614031565b93506141cf60208601614031565b925060408501359150606085013567ffffffffffffffff808211156141f357600080fd5b818701915087601f83011261420757600080fd5b8135818111156142195761421961418c565b604051601f8201601f19908116603f011681019083821181831017156142415761424161418c565b816040528281528a602084870101111561425a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561429157600080fd5b61429a83614031565b915061418360208401614031565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156143545761435461432a565b5060010190565b600181811c9082168061436f57607f821691505b6020821081141561439057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156144015761440161432a565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261442b5761442b614406565b500490565b60006020828403121561444257600080fd5b5051919050565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526025908201527f5468697320706f7274696f6e206f66206d696e74696e67206973206e6f742061604082015264637469766560d81b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252601f908201527f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b600082198211156145745761457461432a565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252601a908201527f596f752068697420746865206d6178207065722077616c6c6574000000000000604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60008351614654818460208801613fad565b835190830190614668818360208801613fad565b01949350505050565b6000828210156146835761468361432a565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826146e9576146e9614406565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061472190830184613fd9565b9695505050505050565b60006020828403121561473d57600080fd5b8151612f2381613f7a565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204b7074c4df3a11f69759a46fd578642f878fe3632780be899ba3be766084130b64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007ab2352b1d2e185560494d5e577f9d3c238b78c500000000000000000000000000000000000000000000000000000000000000144469616d6f6e642043727970746f2044756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000034443440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Diamond Crypto Dunks
Arg [1] : symbol (string): DCD
Arg [2] : adambombsquadContractAddress (address): 0x7AB2352b1D2e185560494D5e577F9D3c238b78C5

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000007ab2352b1d2e185560494d5e577f9d3c238b78c5
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 4469616d6f6e642043727970746f2044756e6b73000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4443440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

509:18214:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5089:275;;;;;;;;;;-1:-1:-1;5089:275:2;;;;;:::i;:::-;;:::i;:::-;;937:224:6;;;;;;;;;;-1:-1:-1;937:224:6;;;;;:::i;:::-;;:::i;:::-;;;1185:14:15;;1178:22;1160:41;;1148:2;1133:18;937:224:6;;;;;;;;844:36:2;;;;;;;;;;;;878:2;844:36;;;;;1358:25:15;;;1346:2;1331:18;844:36:2;1212:177:15;2426:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2494:32:15;;;2476:51;;2464:2;2449:18;3985:221:5;2330:203:15;3508:411:5;;;;;;;;;;-1:-1:-1;3508:411:5;;;;;:::i;:::-;;:::i;17058:121:2:-;;;;;;;;;;-1:-1:-1;17058:121:2;;;;;:::i;:::-;;:::i;1577:113:6:-;;;;;;;;;;-1:-1:-1;1665:10:6;:17;1577:113;;1230:37:2;;;;;;;;;;-1:-1:-1;1230:37:2;;;;;;;;;;;3993:109;;;;;;;;;;-1:-1:-1;3993:109:2;;;;;:::i;:::-;-1:-1:-1;;;;;4080:16:2;4060:4;4080:16;;;:10;:16;;;;;;;;;3993:109;686:37;;;;;;;;;;;;720:3;686:37;;1744:38;;;;;;;;;;;;;;;;5593:357;;;;;;;;;;-1:-1:-1;5593:357:2;;;;;:::i;:::-;;:::i;4875:339:5:-;;;;;;;;;;-1:-1:-1;4875:339:5;;;;;:::i;:::-;;:::i;1701:38:2:-;;;;;;;;;;;;;;;;1658;;;;;;;;;;;;;;;;1245:256:6;;;;;;;;;;-1:-1:-1;1245:256:6;;;;;:::i;:::-;;:::i;4966:115:2:-;;;;;;;;;;-1:-1:-1;4966:115:2;;;;;:::i;:::-;-1:-1:-1;;;;;5056:19:2;5036:4;5056:19;;;:13;:19;;;;;;;;;4966:115;1272:39;;;;;;;;;;-1:-1:-1;1272:39:2;;;;;;;;;;;17591:206;;;;;;;;;;;;;:::i;12806:1581::-;;;;;;:::i;:::-;;:::i;1615:38::-;;;;;;;;;;;;;;;;1492:35;;;;;;;;;;;;;;;;5285:185:5;;;;;;;;;;-1:-1:-1;5285:185:5;;;;;:::i;:::-;;:::i;1454:33:2:-;;;;;;;;;;;;;;;;1767:233:6;;;;;;;;;;-1:-1:-1;1767:233:6;;;;;:::i;:::-;;:::i;1188:37:2:-;;;;;;;;;;-1:-1:-1;1188:37:2;;;;;;;;;;;6577:1518;;;;;;:::i;:::-;;:::i;1532:35::-;;;;;;;;;;;;;;;;4110:269;;;;;;;;;;-1:-1:-1;4110:269:2;;;;;:::i;:::-;;:::i;5958:115::-;;;;;;;;;;-1:-1:-1;5958:115:2;;;;;:::i;:::-;-1:-1:-1;;;;;6048:19:2;6028:4;6048:19;;;:13;:19;;;;;;;;;5958:115;17931:101;;;;;;;;;;-1:-1:-1;17931:101:2;;;;;:::i;:::-;;:::i;1148:35::-;;;;;;;;;;-1:-1:-1;1148:35:2;;;;;;;;;;;2120:239:5;;;;;;;;;;-1:-1:-1;2120:239:5;;;;;:::i;:::-;;:::i;6081:275:2:-;;;;;;;;;;-1:-1:-1;6081:275:2;;;;;:::i;:::-;;:::i;16919:129::-;;;;;;;;;;-1:-1:-1;16919:129:2;;;;;:::i;:::-;;:::i;18038:141::-;;;;;;;;;;-1:-1:-1;18038:141:2;;;;;:::i;:::-;;:::i;1850:208:5:-;;;;;;;;;;-1:-1:-1;1850:208:5;;;;;:::i;:::-;;:::i;1650:94:13:-;;;;;;;;;;;;;:::i;15944:305:2:-;;;;;;;;;;-1:-1:-1;15944:305:2;;;;;:::i;:::-;;:::i;17342:129::-;;;;;;;;;;-1:-1:-1;17342:129:2;;;;;:::i;:::-;;:::i;3640:345::-;;;;;;;;;;-1:-1:-1;3640:345:2;;;;;:::i;:::-;;:::i;3426:174::-;;;;;;;;;;-1:-1:-1;3426:174:2;;;;;:::i;:::-;;:::i;8118:1508::-;;;;;;:::i;:::-;;:::i;999:87:13:-;;;;;;;;;;-1:-1:-1;1072:6:13;;-1:-1:-1;;;;;1072:6:13;999:87;;1105:34:2;;;;;;;;;;-1:-1:-1;1105:34:2;;;;;;;;1378:33;;;;;;;;;;;;;;;;17821:104;;;;;;;;;;-1:-1:-1;17821:104:2;;;;;:::i;:::-;;:::i;2595::5:-;;;;;;;;;;;;;:::i;3153:265:2:-;;;;;;;;;;-1:-1:-1;3153:265:2;;;;;:::i;:::-;;:::i;17191:137::-;;;;;;;;;;-1:-1:-1;17191:137:2;;;;;:::i;:::-;;:::i;3040:105::-;;;;;;;;;;-1:-1:-1;3040:105:2;;;;;:::i;:::-;-1:-1:-1;;;;;3125:14:2;3105:4;3125:14;;;:8;:14;;;;;;;;;3040:105;4278:295:5;;;;;;;;;;-1:-1:-1;4278:295:5;;;;;:::i;:::-;;:::i;1316:34:2:-;;;;;;;;;;-1:-1:-1;1316:34:2;;;;;;;;;;;6364:184;;;;;;;;;;-1:-1:-1;6364:184:2;;;;;:::i;:::-;;:::i;11227:1522::-;;;;;;:::i;:::-;;:::i;16665:117::-;;;;;;;;;;-1:-1:-1;16665:117:2;;;;;:::i;:::-;;:::i;9668:1519::-;;;;;;:::i;:::-;;:::i;1416:33::-;;;;;;;;;;;;;;;;2695:337;;;;;;;;;;-1:-1:-1;2695:337:2;;;;;:::i;:::-;;:::i;16792:117::-;;;;;;;;;;-1:-1:-1;16792:117:2;;;;;:::i;:::-;;:::i;885:41::-;;;;;;;;;;;;924:2;885:41;;5541:328:5;;;;;;;;;;-1:-1:-1;5541:328:5;;;;;:::i;:::-;;:::i;4387:178:2:-;;;;;;;;;;-1:-1:-1;4387:178:2;;;;;:::i;:::-;;:::i;728:39::-;;;;;;;;;;;;762:5;728:39;;18291:429;;;;;;;;;;-1:-1:-1;18291:429:2;;;;;:::i;:::-;;:::i;16338:305::-;;;;;;;;;;-1:-1:-1;16338:305:2;;;;;:::i;:::-;;:::i;14414:1369::-;;;;;;:::i;:::-;;:::i;1787:32::-;;;;;;;;;;;;;;;;5372:184;;;;;;;;;;-1:-1:-1;5372:184:2;;;;;:::i;:::-;;:::i;4601:357::-;;;;;;;;;;-1:-1:-1;4601:357:2;;;;;:::i;:::-;;:::i;18185:100::-;;;;;;;;;;;;;:::i;4644:164:5:-;;;;;;;;;;-1:-1:-1;4644:164:5;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:5;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;1899:192:13;;;;;;;;;;-1:-1:-1;1899:192:13;;;;;:::i;:::-;;:::i;1572:38:2:-;;;;;;;;;;;;;;;;5089:275;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;;;;;;;;;5191:9:2::1;5186:173;5206:20:::0;;::::1;5186:173;;;5274:1;5250:9:::0;;5260:1;5250:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5250:26:2::1;;;5242:65;;;;-1:-1:-1::0;;;5242:65:2::1;;;;;;;:::i;:::-;5346:5;5316:13;:27;5330:9;;5340:1;5330:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5316:27:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;5316:27:2;:35;;-1:-1:-1;;5316:35:2::1;::::0;::::1;;::::0;;;::::1;::::0;;5228:3;::::1;::::0;::::1;:::i;:::-;;;;5186:173;;;;5089:275:::0;;:::o;937:224:6:-;1039:4;-1:-1:-1;;;;;;1063:50:6;;-1:-1:-1;;;1063:50:6;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:6:o;2426:100:5:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;4081:73;;;;-1:-1:-1;;;4081:73:5;;7952:2:15;4081:73:5;;;7934:21:15;7991:2;7971:18;;;7964:30;8030:34;8010:18;;;8003:62;-1:-1:-1;;;8081:18:15;;;8074:42;8133:19;;4081:73:5;7750:408:15;4081:73:5;-1:-1:-1;4174:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:5;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:5;:2;-1:-1:-1;;;;;3647:11:5;;;3639:57;;;;-1:-1:-1;;;3639:57:5;;8365:2:15;3639:57:5;;;8347:21:15;8404:2;8384:18;;;8377:30;8443:34;8423:18;;;8416:62;-1:-1:-1;;;8494:18:15;;;8487:31;8535:19;;3639:57:5;8163:397:15;3639:57:5;681:10:1;-1:-1:-1;;;;;3731:21:5;;;;:62;;-1:-1:-1;3756:37:5;3773:5;681:10:1;4644:164:5;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:5;;8767:2:15;3709:168:5;;;8749:21:15;8806:2;8786:18;;;8779:30;8845:34;8825:18;;;8818:62;8916:26;8896:18;;;8889:54;8960:19;;3709:168:5;8565:420:15;3709:168:5;3890:21;3899:2;3903:7;3890:8;:21::i;17058:121:2:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;17139:15:2::1;:34:::0;;;::::1;;;;-1:-1:-1::0;;17139:34:2;;::::1;::::0;;;::::1;::::0;;17058:121::o;5593:357::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;5690:9:2::1;5685:260;5705:20:::0;;::::1;5685:260;;;5773:1;5749:9:::0;;5759:1;5749:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5749:26:2::1;;;5741:65;;;;-1:-1:-1::0;;;5741:65:2::1;;;;;;;:::i;:::-;5845:4;5815:13;:27;5829:9;;5839:1;5829:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5815:27:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;5815:27:2;;;:34;;-1:-1:-1;;5815:34:2::1;::::0;::::1;;::::0;;;::::1;::::0;;;5858:20:::1;-1:-1:-1::0;5879:9:2;;5889:1;5879:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5858:34:2::1;-1:-1:-1::0;;;;;5858:34:2::1;;;;;;;;;;;;;:38;:79;;5936:1;5858:79;;;5899:20;:34;5920:9;;5930:1;5920:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5899:34:2::1;-1:-1:-1::0;;;;;5899:34:2::1;;;;;;;;;;;;;5858:79;-1:-1:-1::0;5727:3:2;::::1;::::0;::::1;:::i;:::-;;;;5685:260;;4875:339:5::0;5070:41;681:10:1;5103:7:5;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:5;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:6;;9610:2:15;1362:87:6;;;9592:21:15;9649:2;9629:18;;;9622:30;9688:34;9668:18;;;9661:62;-1:-1:-1;;;9739:18:15;;;9732:41;9790:19;;1362:87:6;9408:407:15;1362:87:6;-1:-1:-1;;;;;;1467:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;17591:206:2:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;17694:8:2::1;::::0;17654:21:::1;::::0;-1:-1:-1;;;;;17694:8:2::1;17686:43;17725:3;17713:11;17654:21:::0;17725:3;17713:11:::1;:::i;:::-;:15;;;;:::i;:::-;17686:43;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;17740:51:2::1;::::0;17748:10:::1;::::0;17769:21:::1;17740:51:::0;::::1;;;::::0;::::1;::::0;;;17769:21;17748:10;17740:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;17628:169;17591:206::o:0;12806:1581::-;12933:13;;:35;;-1:-1:-1;;;12933:35:2;;12957:10;12933:35;;;2476:51:15;12913:17:2;;-1:-1:-1;;;;;12933:13:2;;:23;;2449:18:15;;12933:35:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12913:55;;12998:1;12983:12;:16;12975:25;;;;;;13039:14;;;;13031:49;;;;-1:-1:-1;;;13031:49:2;;;;;;;:::i;:::-;13095:17;;;;;;;13087:67;;;;-1:-1:-1;;;13087:67:2;;;;;;;:::i;:::-;762:5;13191:13;1665:10:6;:17;;1577:113;13191:13:2;:23;13183:63;;;;-1:-1:-1;;;13183:63:2;;;;;;;:::i;:::-;13278:1;13261:14;:18;13253:62;;;;-1:-1:-1;;;13253:62:2;;;;;;;:::i;:::-;878:2;13330:14;:25;;13322:70;;;;-1:-1:-1;;;13322:70:2;;;;;;;:::i;:::-;13427:1;13409:14;:19;13406:134;;762:5;13461:14;13445:13;1665:10:6;:17;;1577:113;13445:13:2;:30;;;;:::i;:::-;:34;;13478:1;13445:34;:::i;:::-;:45;;13437:90;;;;-1:-1:-1;;;13437:90:2;;;;;;;:::i;:::-;13573:1;13556:14;:18;13553:129;;;762:5;13607:14;13591:13;1665:10:6;:17;;1577:113;13591:13:2;:30;;;;:::i;:::-;:41;;13583:86;;;;-1:-1:-1;;;13583:86:2;;;;;;;:::i;:::-;878:2;13696:21;13706:10;13696:9;:21::i;:::-;:32;;13688:70;;;;-1:-1:-1;;;13688:70:2;;;;;;;:::i;:::-;13832:9;13814:14;13802:9;;:26;;;;:::i;:::-;:39;;13794:80;;;;-1:-1:-1;;;13794:80:2;;;;;;;:::i;:::-;13931:1;13913:14;:19;13910:226;;13952:9;13947:180;13971:18;:14;13988:1;13971:18;:::i;:::-;13967:1;:22;13947:180;;;14007:15;14025:13;1665:10:6;:17;;1577:113;14025:13:2;:17;;14041:1;14025:17;:::i;:::-;14007:35;;14077:1;14053:20;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;14089:30:2;;-1:-1:-1;14099:10:2;14111:7;14089:9;:30::i;:::-;-1:-1:-1;13991:3:2;;;;:::i;:::-;;;;13947:180;;;;13910:226;14169:1;14152:14;:18;14149:225;;;14190:9;14185:176;14209:14;14205:1;:18;14185:176;;;14241:15;14259:13;1665:10:6;:17;;1577:113;14259:13:2;:17;;14275:1;14259:17;:::i;:::-;14241:35;;14311:1;14287:20;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;14323:30:2;;-1:-1:-1;14333:10:2;14345:7;14323:9;:30::i;:::-;-1:-1:-1;14225:3:2;;;;:::i;:::-;;;;14185:176;;5285:185:5;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;1767:233:6:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:6;;13681:2:15;1862:95:6;;;13663:21:15;13720:2;13700:18;;;13693:30;13759:34;13739:18;;;13732:62;-1:-1:-1;;;13810:18:15;;;13803:42;13862:19;;1862:95:6;13479:408:15;1862:95:6;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;6577:1518:2:-;6680:14;;;;6672:49;;;;-1:-1:-1;;;6672:49:2;;;;;;;:::i;:::-;6736:17;;;;;;;6728:67;;;;-1:-1:-1;;;6728:67:2;;;;;;;:::i;:::-;6821:10;6810:22;;;;:10;:22;;;;;;;;6802:31;;;;;;762:5;6874:13;1665:10:6;:17;;1577:113;6874:13:2;:23;6866:63;;;;-1:-1:-1;;;6866:63:2;;;;;;;:::i;:::-;6961:1;6944:14;:18;6936:62;;;;-1:-1:-1;;;6936:62:2;;;;;;;:::i;:::-;7032:1;7014:14;:19;7011:134;;762:5;7066:14;7050:13;1665:10:6;:17;;1577:113;7050:13:2;:30;;;;:::i;:::-;:34;;7083:1;7050:34;:::i;:::-;:45;;7042:90;;;;-1:-1:-1;;;7042:90:2;;;;;;;:::i;:::-;7178:1;7161:14;:18;7158:129;;;762:5;7212:14;7196:13;1665:10:6;:17;;1577:113;7196:13:2;:30;;;;:::i;:::-;:41;;7188:86;;;;-1:-1:-1;;;7188:86:2;;;;;;;:::i;:::-;837:2;7301:21;7311:10;7301:9;:21::i;:::-;:39;;7293:77;;;;-1:-1:-1;;;7293:77:2;;;;;;;:::i;:::-;762:5;7405:14;7389:13;1665:10:6;:17;;1577:113;7389:13:2;:30;;;;:::i;:::-;:41;;7381:86;;;;-1:-1:-1;;;7381:86:2;;;;;;;:::i;:::-;7548:9;7530:14;7513;;:31;;;;:::i;:::-;:44;;7505:85;;;;-1:-1:-1;;;7505:85:2;;;;;;;:::i;:::-;7643:1;7625:14;:19;7622:226;;7664:9;7659:180;7683:18;:14;7700:1;7683:18;:::i;:::-;7679:1;:22;7659:180;;;7719:15;7737:13;1665:10:6;:17;;1577:113;7737:13:2;:17;;7753:1;7737:17;:::i;:::-;7719:35;;7789:1;7765:20;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;7801:30:2;;-1:-1:-1;7811:10:2;7823:7;7801:9;:30::i;:::-;-1:-1:-1;7703:3:2;;;;:::i;:::-;;;;7659:180;;;;7622:226;7881:1;7864:14;:18;7861:225;;;7902:9;7897:176;7921:14;7917:1;:18;7897:176;;;7953:15;7971:13;1665:10:6;:17;;1577:113;7971:13:2;:17;;7987:1;7971:17;:::i;:::-;7953:35;;8023:1;7999:20;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;8035:30:2;;-1:-1:-1;8045:10:2;8057:7;8035:9;:30::i;:::-;-1:-1:-1;7937:3:2;;;;:::i;:::-;;;;7897:176;;7861:225;6577:1518;:::o;4110:269::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4209:9:2::1;4204:170;4224:20:::0;;::::1;4204:170;;;4292:1;4268:9:::0;;4278:1;4268:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4268:26:2::1;;;4260:65;;;;-1:-1:-1::0;;;4260:65:2::1;;;;;;;:::i;:::-;4361:5;4334:10;:24;4345:9;;4355:1;4345:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4334:24:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4334:24:2;:32;;-1:-1:-1;;4334:32:2::1;::::0;::::1;;::::0;;;::::1;::::0;;4246:3;::::1;::::0;::::1;:::i;:::-;;;;4204:170;;17931:101:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;18007:19:2::1;:13;18023:3:::0;;18007:19:::1;:::i;2120:239:5:-:0;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:5;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:5;;14094:2:15;2255:73:5;;;14076:21:15;14133:2;14113:18;;;14106:30;14172:34;14152:18;;;14145:62;-1:-1:-1;;;14223:18:15;;;14216:39;14272:19;;2255:73:5;13892:405:15;6081:275:2;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;6183:9:2::1;6178:173;6198:20:::0;;::::1;6178:173;;;6266:1;6242:9:::0;;6252:1;6242:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6242:26:2::1;;;6234:65;;;;-1:-1:-1::0;;;6234:65:2::1;;;;;;;:::i;:::-;6338:5;6308:13;:27;6322:9;;6332:1;6322:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6308:27:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;6308:27:2;:35;;-1:-1:-1;;6308:35:2::1;::::0;::::1;;::::0;;;::::1;::::0;;6220:3;::::1;::::0;::::1;:::i;:::-;;;;6178:173;;16919:129:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;17004:17:2::1;:38:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;17004:38:2;;::::1;::::0;;;::::1;::::0;;16919:129::o;18038:141::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;18134:39:2::1;:21;18158:15:::0;;18134:39:::1;:::i;1850:208:5:-:0;1922:7;-1:-1:-1;;;;;1950:19:5;;1942:74;;;;-1:-1:-1;;;1942:74:5;;14504:2:15;1942:74:5;;;14486:21:15;14543:2;14523:18;;;14516:30;14582:34;14562:18;;;14555:62;-1:-1:-1;;;14633:18:15;;;14626:40;14683:19;;1942:74:5;14302:406:15;1942:74:5;-1:-1:-1;;;;;;2034:16:5;;;;;:9;:16;;;;;;;1850:208::o;1650:94:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;15944:305:2:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;762:5:2::1;16019:13;1665:10:6::0;:17;;1577:113;16019:13:2::1;:23;16011:63;;;;-1:-1:-1::0;;;16011:63:2::1;;;;;;;:::i;:::-;16087:9;16083:161;16102:13:::0;;::::1;16083:161;;;16131:15;16149:13;1665:10:6::0;:17;;1577:113;16149:13:2::1;:17;::::0;16165:1:::1;16149:17;:::i;:::-;16131:35;;16199:1;16177:18;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;16211:25:2::1;::::0;-1:-1:-1;16221:2:2;;16224:1;16221:5;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;16228:7;16211:9;:25::i;:::-;-1:-1:-1::0;16117:3:2;::::1;::::0;::::1;:::i;:::-;;;;16083:161;;17342:129:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;17427:17:2::1;:38:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;17427:38:2;;::::1;::::0;;;::::1;::::0;;17342:129::o;3640:345::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;3734:9:2::1;3729:251;3749:20:::0;;::::1;3729:251;;;3817:1;3793:9:::0;;3803:1;3793:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3793:26:2::1;;;3785:65;;;;-1:-1:-1::0;;;3785:65:2::1;;;;;;;:::i;:::-;3886:4;3859:10;:24;3870:9;;3880:1;3870:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3859:24:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3859:24:2;;;:31;;-1:-1:-1;;3859:31:2::1;::::0;::::1;;::::0;;;::::1;::::0;;;3899:17:::1;-1:-1:-1::0;3917:9:2;;3927:1;3917:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3899:31:2::1;-1:-1:-1::0;;;;;3899:31:2::1;;;;;;;;;;;;;:35;:73;;3971:1;3899:73;;;3937:17;:31;3955:9;;3965:1;3955:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3937:31:2::1;-1:-1:-1::0;;;;;3937:31:2::1;;;;;;;;;;;;;3899:73;-1:-1:-1::0;3771:3:2;::::1;::::0;::::1;:::i;:::-;;;;3729:251;;3426:174:::0;3499:7;-1:-1:-1;;;;;3522:19:2;;3514:44;;;;-1:-1:-1;;;3514:44:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3572:22:2;;;;;:15;:22;;;;;;;3426:174::o;8118:1508::-;8219:14;;;;8211:49;;;;-1:-1:-1;;;8211:49:2;;;;;;;:::i;:::-;8275:15;;;;;;;8267:65;;;;-1:-1:-1;;;8267:65:2;;;;;;;:::i;:::-;8356:10;8347:20;;;;:8;:20;;;;;;;;8339:29;;;;;;762:5;8409:13;1665:10:6;:17;;1577:113;8409:13:2;:23;8401:63;;;;-1:-1:-1;;;8401:63:2;;;;;;;:::i;:::-;8496:1;8479:14;:18;8471:62;;;;-1:-1:-1;;;8471:62:2;;;;;;;:::i;:::-;837:2;8548:14;:32;;8540:77;;;;-1:-1:-1;;;8540:77:2;;;;;;;:::i;:::-;8657:1;8639:14;:19;8636:134;;762:5;8691:14;8675:13;1665:10:6;:17;;1577:113;8675:13:2;:30;;;;:::i;:::-;:34;;8708:1;8675:34;:::i;:::-;:45;;8667:90;;;;-1:-1:-1;;;8667:90:2;;;;;;;:::i;:::-;8803:1;8786:14;:18;8783:129;;;762:5;8837:14;8821:13;1665:10:6;:17;;1577:113;8821:13:2;:30;;;;:::i;:::-;:41;;8813:86;;;;-1:-1:-1;;;8813:86:2;;;;;;;:::i;:::-;837:2;8928:21;8938:10;8928:9;:21::i;:::-;:39;;8920:77;;;;-1:-1:-1;;;8920:77:2;;;;;;;:::i;:::-;9071:9;9053:14;9041:9;;:26;;;;:::i;:::-;:39;;9033:80;;;;-1:-1:-1;;;9033:80:2;;;;;;;:::i;:::-;9162:1;9144:14;:19;9141:224;;9183:9;9178:178;9202:18;:14;9219:1;9202:18;:::i;:::-;9198:1;:22;9178:178;;;9238:15;9256:13;1665:10:6;:17;;1577:113;9256:13:2;:17;;9272:1;9256:17;:::i;:::-;9238:35;;9306:1;9284:18;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;9318:30:2;;-1:-1:-1;9328:10:2;9340:7;9318:9;:30::i;:::-;-1:-1:-1;9222:3:2;;;;:::i;:::-;;;;9178:178;;;;9141:224;9398:1;9381:14;:18;9378:235;;;9419:9;9414:174;9438:14;9434:1;:18;9414:174;;;9470:15;9488:13;1665:10:6;:17;;1577:113;9488:13:2;:17;;9504:1;9488:17;:::i;:::-;9470:35;;9538:1;9516:18;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;9550:30:2;;-1:-1:-1;9560:10:2;9572:7;9550:9;:30::i;:::-;-1:-1:-1;9454:3:2;;;;:::i;:::-;;;;9414:174;;17821:104;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;17901:18:2::1;:12;17916:3:::0;;17901:18:::1;:::i;2595:104:5:-:0;2651:13;2684:7;2677:14;;;;;:::i;3153:265:2:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;3250:9:2::1;3245:168;3265:20:::0;;::::1;3245:168;;;3333:1;3309:9:::0;;3319:1;3309:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3309:26:2::1;;;3301:65;;;;-1:-1:-1::0;;;3301:65:2::1;;;;;;;:::i;:::-;3400:5;3375:8;:22;3384:9;;3394:1;3384:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3375:22:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3375:22:2;:30;;-1:-1:-1;;3375:30:2::1;::::0;::::1;;::::0;;;::::1;::::0;;3287:3;::::1;::::0;::::1;:::i;:::-;;;;3245:168;;17191:137:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;17280:19:2::1;:42:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;17280:42:2;;::::1;::::0;;;::::1;::::0;;17191:137::o;4278:295:5:-;-1:-1:-1;;;;;4381:24:5;;681:10:1;4381:24:5;;4373:62;;;;-1:-1:-1;;;4373:62:5;;15256:2:15;4373:62:5;;;15238:21:15;15295:2;15275:18;;;15268:30;15334:27;15314:18;;;15307:55;15379:18;;4373:62:5;15054:349:15;4373:62:5;681:10:1;4448:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:5;;;;;;;;;;4517:48;;1160:41:15;;;4448:42:5;;681:10:1;4517:48:5;;1133:18:15;4517:48:5;;;;;;;4278:295;;:::o;6364:184:2:-;6442:7;-1:-1:-1;;;;;6465:19:2;;6457:44;;;;-1:-1:-1;;;6457:44:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;;6515:27:2;;;;;:20;:27;;;;;;;6364:184::o;11227:1522::-;11333:14;;;;11325:49;;;;-1:-1:-1;;;11325:49:2;;;;;;;:::i;:::-;11389:19;;;;;;;11381:69;;;;-1:-1:-1;;;11381:69:2;;;;;;;:::i;:::-;11479:10;11465:25;;;;:13;:25;;;;;;;;11457:34;;;;;;762:5;11532:13;1665:10:6;:17;;1577:113;11532:13:2;:23;11524:63;;;;-1:-1:-1;;;11524:63:2;;;;;;;:::i;:::-;11619:1;11602:14;:18;11594:62;;;;-1:-1:-1;;;11594:62:2;;;;;;;:::i;:::-;970:2;11671:14;:30;;11663:75;;;;-1:-1:-1;;;11663:75:2;;;;;;;:::i;:::-;970:2;11753:21;11763:10;11753:9;:21::i;:::-;:37;;11745:75;;;;-1:-1:-1;;;11745:75:2;;;;;;;:::i;:::-;11860:1;11842:14;:19;11839:134;;762:5;11894:14;11878:13;1665:10:6;:17;;1577:113;11878:13:2;:30;;;;:::i;:::-;:34;;11911:1;11878:34;:::i;:::-;:45;;11870:90;;;;-1:-1:-1;;;11870:90:2;;;;;;;:::i;:::-;12006:1;11989:14;:18;11986:129;;;762:5;12040:14;12024:13;1665:10:6;:17;;1577:113;12024:13:2;:30;;;;:::i;:::-;:41;;12016:86;;;;-1:-1:-1;;;12016:86:2;;;;;;;:::i;:::-;12188:9;12170:14;12158:9;;:26;;;;:::i;:::-;:39;;12150:80;;;;-1:-1:-1;;;12150:80:2;;;;;;;:::i;:::-;12287:1;12269:14;:19;12266:229;;12308:9;12303:183;12327:18;:14;12344:1;12327:18;:::i;:::-;12323:1;:22;12303:183;;;12363:15;12381:13;1665:10:6;:17;;1577:113;12381:13:2;:17;;12397:1;12381:17;:::i;:::-;12363:35;;12436:1;12409:23;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;12448:30:2;;-1:-1:-1;12458:10:2;12470:7;12448:9;:30::i;:::-;-1:-1:-1;12347:3:2;;;;:::i;:::-;;;;12303:183;;;;12266:229;12528:1;12511:14;:18;12508:228;;;12549:9;12544:179;12568:14;12564:1;:18;12544:179;;;12600:15;12618:13;1665:10:6;:17;;1577:113;12618:13:2;:17;;12634:1;12618:17;:::i;:::-;12600:35;;12673:1;12646:23;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;12685:30:2;;-1:-1:-1;12695:10:2;12707:7;12685:9;:30::i;:::-;-1:-1:-1;12584:3:2;;;;:::i;:::-;;;;12544:179;;16665:117;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;16744:14:2::1;:32:::0;;-1:-1:-1;;16744:32:2::1;::::0;::::1;;::::0;;;::::1;::::0;;16665:117::o;9668:1519::-;9774:14;;;;9766:49;;;;-1:-1:-1;;;9766:49:2;;;;;;;:::i;:::-;9830:19;;;;;;;9822:69;;;;-1:-1:-1;;;9822:69:2;;;;;;;:::i;:::-;9920:10;9906:25;;;;:13;:25;;;;;;;;9898:34;;;;;;762:5;9973:13;1665:10:6;:17;;1577:113;9973:13:2;:23;9965:63;;;;-1:-1:-1;;;9965:63:2;;;;;;;:::i;:::-;10060:1;10043:14;:18;10035:62;;;;-1:-1:-1;;;10035:62:2;;;;;;;:::i;:::-;924:2;10112:14;:30;;10104:75;;;;-1:-1:-1;;;10104:75:2;;;;;;;:::i;:::-;924:2;10194:21;10204:10;10194:9;:21::i;:::-;:37;;10186:75;;;;-1:-1:-1;;;10186:75:2;;;;;;;:::i;:::-;10301:1;10283:14;:19;10280:134;;762:5;10335:14;10319:13;1665:10:6;:17;;1577:113;10319:13:2;:30;;;;:::i;:::-;:34;;10352:1;10319:34;:::i;:::-;:45;;10311:90;;;;-1:-1:-1;;;10311:90:2;;;;;;;:::i;:::-;10447:1;10430:14;:18;10427:129;;;762:5;10481:14;10465:13;1665:10:6;:17;;1577:113;10465:13:2;:30;;;;:::i;:::-;:41;;10457:86;;;;-1:-1:-1;;;10457:86:2;;;;;;;:::i;:::-;10629:9;10611:14;10599:9;;:26;;;;:::i;:::-;:39;;10591:80;;;;-1:-1:-1;;;10591:80:2;;;;;;;:::i;:::-;10725:1;10707:14;:19;10704:229;;10746:9;10741:183;10765:18;:14;10782:1;10765:18;:::i;:::-;10761:1;:22;10741:183;;;10801:15;10819:13;1665:10:6;:17;;1577:113;10819:13:2;:17;;10835:1;10819:17;:::i;:::-;10801:35;;10874:1;10847:23;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;10886:30:2;;-1:-1:-1;10896:10:2;10908:7;10886:9;:30::i;:::-;-1:-1:-1;10785:3:2;;;;:::i;:::-;;;;10741:183;;;;10704:229;10966:1;10949:14;:18;10946:228;;;10987:9;10982:179;11006:14;11002:1;:18;10982:179;;;11038:15;11056:13;1665:10:6;:17;;1577:113;11056:13:2;:17;;11072:1;11056:17;:::i;:::-;11038:35;;11111:1;11084:23;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;11123:30:2;;-1:-1:-1;11133:10:2;11145:7;11123:9;:30::i;:::-;-1:-1:-1;11022:3:2;;;;:::i;:::-;;;;10982:179;;2695:337;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;2787:9:2::1;2782:245;2802:20:::0;;::::1;2782:245;;;2870:1;2846:9:::0;;2856:1;2846:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2846:26:2::1;;;2838:65;;;;-1:-1:-1::0;;;2838:65:2::1;;;;;;;:::i;:::-;2937:4;2912:8;:22;2921:9;;2931:1;2921:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2912:22:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2912:22:2;;;:29;;-1:-1:-1;;2912:29:2::1;::::0;::::1;;::::0;;;::::1;::::0;;;2950:15:::1;-1:-1:-1::0;2966:9:2;;2976:1;2966:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2950:29:2::1;-1:-1:-1::0;;;;;2950:29:2::1;;;;;;;;;;;;;:33;:69;;3018:1;2950:69;;;2986:15;:29;3002:9;;3012:1;3002:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2986:29:2::1;-1:-1:-1::0;;;;;2986:29:2::1;;;;;;;;;;;;;2950:69;-1:-1:-1::0;2824:3:2;::::1;::::0;::::1;:::i;:::-;;;;2782:245;;16792:117:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;16871:14:2::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;16871:32:2;;::::1;::::0;;;::::1;::::0;;16792:117::o;5541:328:5:-;5716:41;681:10:1;5749:7:5;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:5;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;4387:178:2:-;4462:7;-1:-1:-1;;;;;4485:19:2;;4477:44;;;;-1:-1:-1;;;4477:44:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4535:24:2;;;;;:17;:24;;;;;;;4387:178::o;18291:429::-;7444:4:5;7468:16;;;:7;:16;;;;;;18364:13:2;;-1:-1:-1;;;;;7468:16:5;18386:49:2;;;;-1:-1:-1;;;18386:49:2;;15610:2:15;18386:49:2;;;15592:21:15;15649:2;15629:18;;;15622:30;-1:-1:-1;;;15668:18:15;;;15661:50;15728:18;;18386:49:2;15408:344:15;18386:49:2;18520:29;18552:21;18520:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18619:1;18593:15;18587:29;:33;:127;;18701:13;18587:127;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18654:15;18671:18;:7;:16;:18::i;:::-;18637:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18587:127;18580:134;18291:429;-1:-1:-1;;;18291:429:2:o;16338:305::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;762:5:2::1;16413:13;1665:10:6::0;:17;;1577:113;16413:13:2::1;:23;16405:63;;;;-1:-1:-1::0;;;16405:63:2::1;;;;;;;:::i;:::-;16481:9;16477:161;16496:13:::0;;::::1;16477:161;;;16525:15;16543:13;1665:10:6::0;:17;;1577:113;16543:13:2::1;:17;::::0;16559:1:::1;16543:17;:::i;:::-;16525:35;;16593:1;16571:18;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;16605:25:2::1;::::0;-1:-1:-1;16615:2:2;;16618:1;16615:5;;::::1;;;;;:::i;16605:25::-;-1:-1:-1::0;16511:3:2;::::1;::::0;::::1;:::i;:::-;;;;16477:161;;14414:1369:::0;14514:14;;;;14506:49;;;;-1:-1:-1;;;14506:49:2;;;;;;;:::i;:::-;14570:14;;;;;;;14562:64;;;;-1:-1:-1;;;14562:64:2;;;;;;;:::i;:::-;762:5;14663:13;1665:10:6;:17;;1577:113;14663:13:2;:23;14655:63;;;;-1:-1:-1;;;14655:63:2;;;;;;;:::i;:::-;14750:1;14733:14;:18;14725:62;;;;-1:-1:-1;;;14725:62:2;;;;;;;:::i;:::-;837:2;14802:14;:32;;14794:77;;;;-1:-1:-1;;;14794:77:2;;;;;;;:::i;:::-;14906:1;14888:14;:19;14885:134;;762:5;14940:14;14924:13;1665:10:6;:17;;1577:113;14924:13:2;:30;;;;:::i;:::-;:34;;14957:1;14924:34;:::i;:::-;:45;;14916:90;;;;-1:-1:-1;;;14916:90:2;;;;;;;:::i;:::-;15052:1;15035:14;:18;15032:129;;;762:5;15086:14;15070:13;1665:10:6;:17;;1577:113;15070:13:2;:30;;;;:::i;:::-;:41;;15062:86;;;;-1:-1:-1;;;15062:86:2;;;;;;;:::i;:::-;15234:9;15216:14;15204:9;;:26;;;;:::i;:::-;:39;;15196:80;;;;-1:-1:-1;;;15196:80:2;;;;;;;:::i;:::-;15327:1;15309:14;:19;15306:223;;15348:9;15343:177;15367:18;:14;15384:1;15367:18;:::i;:::-;15363:1;:22;15343:177;;;15403:15;15421:13;1665:10:6;:17;;1577:113;15421:13:2;:17;;15437:1;15421:17;:::i;:::-;15403:35;;15470:1;15449:17;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;15482:30:2;;-1:-1:-1;15492:10:2;15504:7;15482:9;:30::i;:::-;-1:-1:-1;15387:3:2;;;;:::i;:::-;;;;15343:177;;;;15306:223;15562:1;15545:14;:18;15542:222;;;15583:9;15578:173;15602:14;15598:1;:18;15578:173;;;15634:15;15652:13;1665:10:6;:17;;1577:113;15652:13:2;:17;;15668:1;15652:17;:::i;:::-;15634:35;;15701:1;15680:17;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;15713:30:2;;-1:-1:-1;15723:10:2;15735:7;15713:9;:30::i;:::-;-1:-1:-1;15618:3:2;;;;:::i;:::-;;;;15578:173;;5372:184;5450:7;-1:-1:-1;;;;;5473:19:2;;5465:44;;;;-1:-1:-1;;;5465:44:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;;5523:27:2;;;;;:20;:27;;;;;;;5372:184::o;4601:357::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4698:9:2::1;4693:260;4713:20:::0;;::::1;4693:260;;;4781:1;4757:9:::0;;4767:1;4757:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4757:26:2::1;;;4749:65;;;;-1:-1:-1::0;;;4749:65:2::1;;;;;;;:::i;:::-;4853:4;4823:13;:27;4837:9;;4847:1;4837:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4823:27:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4823:27:2;;;:34;;-1:-1:-1;;4823:34:2::1;::::0;::::1;;::::0;;;::::1;::::0;;;4866:20:::1;-1:-1:-1::0;4887:9:2;;4897:1;4887:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4866:34:2::1;-1:-1:-1::0;;;;;4866:34:2::1;;;;;;;;;;;;;:38;:79;;4944:1;4866:79;;;4907:20;:34;4928:9;;4938:1;4928:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4907:34:2::1;-1:-1:-1::0;;;;;4907:34:2::1;;;;;;;;;;;;;4866:79;-1:-1:-1::0;4735:3:2;::::1;::::0;::::1;:::i;:::-;;;;4693:260;;18185:100:::0;18238:13;18267:12;18260:19;;;;;:::i;1899:192:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:13;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:13;;16434:2:15;1980:73:13::1;::::0;::::1;16416:21:15::0;16473:2;16453:18;;;16446:30;16512:34;16492:18;;;16485:62;-1:-1:-1;;;16563:18:15;;;16556:36;16609:19;;1980:73:13::1;16232:402:15::0;1980:73:13::1;2064:19;2074:8;2064:9;:19::i;1481:305:5:-:0;1583:4;-1:-1:-1;;;;;;1620:40:5;;-1:-1:-1;;;1620:40:5;;:105;;-1:-1:-1;;;;;;;1677:48:5;;-1:-1:-1;;;1677:48:5;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:4;;;1742:36:5;787:157:4;11361:174:5;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:5;-1:-1:-1;;;;;11436:29:5;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:5;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;7783:73;;;;-1:-1:-1;;;7783:73:5;;16841:2:15;7783:73:5;;;16823:21:15;16880:2;16860:18;;;16853:30;16919:34;16899:18;;;16892:62;-1:-1:-1;;;16970:18:15;;;16963:42;17022:19;;7783:73:5;16639:408:15;7783:73:5;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:5;:7;-1:-1:-1;;;;;7925:16:5;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:5;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:5;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:5;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:5:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:5;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:5;;10789:85;;;;-1:-1:-1;;;10789:85:5;;17254:2:15;10789:85:5;;;17236:21:15;17293:2;17273:18;;;17266:30;17332:34;17312:18;;;17305:62;-1:-1:-1;;;17383:18:15;;;17376:39;17432:19;;10789:85:5;17052:405:15;10789:85:5;-1:-1:-1;;;;;10893:16:5;;10885:65;;;;-1:-1:-1;;;10885:65:5;;17664:2:15;10885:65:5;;;17646:21:15;17703:2;17683:18;;;17676:30;17742:34;17722:18;;;17715:62;-1:-1:-1;;;17793:18:15;;;17786:34;17837:19;;10885:65:5;17462:400:15;10885:65:5;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:5;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:5;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:5;-1:-1:-1;;;;;11169:21:5;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;8363:110::-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;2099:173:13:-;2174:6;;;-1:-1:-1;;;;;2191:17:13;;;-1:-1:-1;;;;;;2191:17:13;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;6751:315:5:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:5;;;;;;;:::i;288:723:14:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:14;;;;;;;;;;;;-1:-1:-1;;;592:10:14;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:14;;-1:-1:-1;744:2:14;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:14;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:14;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:14;;;;;;;;-1:-1:-1;949:11:14;958:2;949:11;;:::i;:::-;;;818:154;;2613:589:6;-1:-1:-1;;;;;2819:18:6;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:6;:4;-1:-1:-1;;;;;2916:10:6;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:6;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:6;:2;-1:-1:-1;;;;;3116:10:6;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;8700:321:5:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:5;;;;;;;:::i;12100:803::-;12255:4;-1:-1:-1;;;;;12276:13:5;;1066:20:0;1114:8;12272:624:5;;12312:72;;-1:-1:-1;;;12312:72:5;;-1:-1:-1;;;;;12312:36:5;;;;;:72;;681:10:1;;12363:4:5;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:5;;;;;;;;-1:-1:-1;;12312:72:5;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:5;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:5;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:5;-1:-1:-1;;;12435:55:5;;-1:-1:-1;12428:62:5;;12272:624;-1:-1:-1;12880:4:5;12100:803;;;;;;:::o;4716:988:6:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:6;;;5194:328;;-1:-1:-1;;;;;5265:18:6;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:6;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:6;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:6;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:6:o;9357:382:5:-;-1:-1:-1;;;;;9437:16:5;;9429:61;;;;-1:-1:-1;;;9429:61:5;;19615:2:15;9429:61:5;;;19597:21:15;;;19634:18;;;19627:30;19693:34;19673:18;;;19666:62;19745:18;;9429:61:5;19413:356:15;9429:61:5;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;:30;9501:58;;;;-1:-1:-1;;;9501:58:5;;19976:2:15;9501:58:5;;;19958:21:15;20015:2;19995:18;;;19988:30;20054;20034:18;;;20027:58;20102:18;;9501:58:5;19774:352:15;9501:58:5;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:5;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:5;-1:-1:-1;;;;;9659:21:5;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:615:15;100:6;108;161:2;149:9;140:7;136:23;132:32;129:52;;;177:1;174;167:12;129:52;217:9;204:23;246:18;287:2;279:6;276:14;273:34;;;303:1;300;293:12;273:34;341:6;330:9;326:22;316:32;;386:7;379:4;375:2;371:13;367:27;357:55;;408:1;405;398:12;357:55;448:2;435:16;474:2;466:6;463:14;460:34;;;490:1;487;480:12;460:34;543:7;538:2;528:6;525:1;521:14;517:2;513:23;509:32;506:45;503:65;;;564:1;561;554:12;503:65;595:2;587:11;;;;;617:6;;-1:-1:-1;14:615:15;;-1:-1:-1;;;;14:615:15:o;634:131::-;-1:-1:-1;;;;;;708:32:15;;698:43;;688:71;;755:1;752;745:12;770:245;828:6;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:30;979:5;955:30;:::i;1394:258::-;1466:1;1476:113;1490:6;1487:1;1484:13;1476:113;;;1566:11;;;1560:18;1547:11;;;1540:39;1512:2;1505:10;1476:113;;;1607:6;1604:1;1601:13;1598:48;;;-1:-1:-1;;1642:1:15;1624:16;;1617:27;1394:258::o;1657:::-;1699:3;1737:5;1731:12;1764:6;1759:3;1752:19;1780:63;1836:6;1829:4;1824:3;1820:14;1813:4;1806:5;1802:16;1780:63;:::i;:::-;1897:2;1876:15;-1:-1:-1;;1872:29:15;1863:39;;;;1904:4;1859:50;;1657:258;-1:-1:-1;;1657:258:15:o;1920:220::-;2069:2;2058:9;2051:21;2032:4;2089:45;2130:2;2119:9;2115:18;2107:6;2089:45;:::i;2145:180::-;2204:6;2257:2;2245:9;2236:7;2232:23;2228:32;2225:52;;;2273:1;2270;2263:12;2225:52;-1:-1:-1;2296:23:15;;2145:180;-1:-1:-1;2145:180:15:o;2538:173::-;2606:20;;-1:-1:-1;;;;;2655:31:15;;2645:42;;2635:70;;2701:1;2698;2691:12;2635:70;2538:173;;;:::o;2716:254::-;2784:6;2792;2845:2;2833:9;2824:7;2820:23;2816:32;2813:52;;;2861:1;2858;2851:12;2813:52;2884:29;2903:9;2884:29;:::i;:::-;2874:39;2960:2;2945:18;;;;2932:32;;-1:-1:-1;;;2716:254:15:o;2975:160::-;3040:20;;3096:13;;3089:21;3079:32;;3069:60;;3125:1;3122;3115:12;3140:180;3196:6;3249:2;3237:9;3228:7;3224:23;3220:32;3217:52;;;3265:1;3262;3255:12;3217:52;3288:26;3304:9;3288:26;:::i;3325:186::-;3384:6;3437:2;3425:9;3416:7;3412:23;3408:32;3405:52;;;3453:1;3450;3443:12;3405:52;3476:29;3495:9;3476:29;:::i;3516:328::-;3593:6;3601;3609;3662:2;3650:9;3641:7;3637:23;3633:32;3630:52;;;3678:1;3675;3668:12;3630:52;3701:29;3720:9;3701:29;:::i;:::-;3691:39;;3749:38;3783:2;3772:9;3768:18;3749:38;:::i;:::-;3739:48;;3834:2;3823:9;3819:18;3806:32;3796:42;;3516:328;;;;;:::o;3849:592::-;3920:6;3928;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;4066:18;4107:2;4099:6;4096:14;4093:34;;;4123:1;4120;4113:12;4093:34;4161:6;4150:9;4146:22;4136:32;;4206:7;4199:4;4195:2;4191:13;4187:27;4177:55;;4228:1;4225;4218:12;4177:55;4268:2;4255:16;4294:2;4286:6;4283:14;4280:34;;;4310:1;4307;4300:12;4280:34;4355:7;4350:2;4341:6;4337:2;4333:15;4329:24;4326:37;4323:57;;;4376:1;4373;4366:12;4446:254;4511:6;4519;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4611:29;4630:9;4611:29;:::i;:::-;4601:39;;4659:35;4690:2;4679:9;4675:18;4659:35;:::i;:::-;4649:45;;4446:254;;;;;:::o;4705:127::-;4766:10;4761:3;4757:20;4754:1;4747:31;4797:4;4794:1;4787:15;4821:4;4818:1;4811:15;4837:1138;4932:6;4940;4948;4956;5009:3;4997:9;4988:7;4984:23;4980:33;4977:53;;;5026:1;5023;5016:12;4977:53;5049:29;5068:9;5049:29;:::i;:::-;5039:39;;5097:38;5131:2;5120:9;5116:18;5097:38;:::i;:::-;5087:48;;5182:2;5171:9;5167:18;5154:32;5144:42;;5237:2;5226:9;5222:18;5209:32;5260:18;5301:2;5293:6;5290:14;5287:34;;;5317:1;5314;5307:12;5287:34;5355:6;5344:9;5340:22;5330:32;;5400:7;5393:4;5389:2;5385:13;5381:27;5371:55;;5422:1;5419;5412:12;5371:55;5458:2;5445:16;5480:2;5476;5473:10;5470:36;;;5486:18;;:::i;:::-;5561:2;5555:9;5529:2;5615:13;;-1:-1:-1;;5611:22:15;;;5635:2;5607:31;5603:40;5591:53;;;5659:18;;;5679:22;;;5656:46;5653:72;;;5705:18;;:::i;:::-;5745:10;5741:2;5734:22;5780:2;5772:6;5765:18;5820:7;5815:2;5810;5806;5802:11;5798:20;5795:33;5792:53;;;5841:1;5838;5831:12;5792:53;5897:2;5892;5888;5884:11;5879:2;5871:6;5867:15;5854:46;5942:1;5937:2;5932;5924:6;5920:15;5916:24;5909:35;5963:6;5953:16;;;;;;;4837:1138;;;;;;;:::o;5980:260::-;6048:6;6056;6109:2;6097:9;6088:7;6084:23;6080:32;6077:52;;;6125:1;6122;6115:12;6077:52;6148:29;6167:9;6148:29;:::i;:::-;6138:39;;6196:38;6230:2;6219:9;6215:18;6196:38;:::i;6245:356::-;6447:2;6429:21;;;6466:18;;;6459:30;6525:34;6520:2;6505:18;;6498:62;6592:2;6577:18;;6245:356::o;6606:127::-;6667:10;6662:3;6658:20;6655:1;6648:31;6698:4;6695:1;6688:15;6722:4;6719:1;6712:15;6738:350;6940:2;6922:21;;;6979:2;6959:18;;;6952:30;7018:28;7013:2;6998:18;;6991:56;7079:2;7064:18;;6738:350::o;7093:127::-;7154:10;7149:3;7145:20;7142:1;7135:31;7185:4;7182:1;7175:15;7209:4;7206:1;7199:15;7225:135;7264:3;-1:-1:-1;;7285:17:15;;7282:43;;;7305:18;;:::i;:::-;-1:-1:-1;7352:1:15;7341:13;;7225:135::o;7365:380::-;7444:1;7440:12;;;;7487;;;7508:61;;7562:4;7554:6;7550:17;7540:27;;7508:61;7615:2;7607:6;7604:14;7584:18;7581:38;7578:161;;;7661:10;7656:3;7652:20;7649:1;7642:31;7696:4;7693:1;7686:15;7724:4;7721:1;7714:15;7578:161;;7365:380;;;:::o;8990:413::-;9192:2;9174:21;;;9231:2;9211:18;;;9204:30;9270:34;9265:2;9250:18;;9243:62;-1:-1:-1;;;9336:2:15;9321:18;;9314:47;9393:3;9378:19;;8990:413::o;9820:168::-;9860:7;9926:1;9922;9918:6;9914:14;9911:1;9908:21;9903:1;9896:9;9889:17;9885:45;9882:71;;;9933:18;;:::i;:::-;-1:-1:-1;9973:9:15;;9820:168::o;9993:127::-;10054:10;10049:3;10045:20;10042:1;10035:31;10085:4;10082:1;10075:15;10109:4;10106:1;10099:15;10125:120;10165:1;10191;10181:35;;10196:18;;:::i;:::-;-1:-1:-1;10230:9:15;;10125:120::o;10250:184::-;10320:6;10373:2;10361:9;10352:7;10348:23;10344:32;10341:52;;;10389:1;10386;10379:12;10341:52;-1:-1:-1;10412:16:15;;10250:184;-1:-1:-1;10250:184:15:o;10439:346::-;10641:2;10623:21;;;10680:2;10660:18;;;10653:30;-1:-1:-1;;;10714:2:15;10699:18;;10692:52;10776:2;10761:18;;10439:346::o;10790:401::-;10992:2;10974:21;;;11031:2;11011:18;;;11004:30;11070:34;11065:2;11050:18;;11043:62;-1:-1:-1;;;11136:2:15;11121:18;;11114:35;11181:3;11166:19;;10790:401::o;11196:351::-;11398:2;11380:21;;;11437:2;11417:18;;;11410:30;11476:29;11471:2;11456:18;;11449:57;11538:2;11523:18;;11196:351::o;11552:355::-;11754:2;11736:21;;;11793:2;11773:18;;;11766:30;11832:33;11827:2;11812:18;;11805:61;11898:2;11883:18;;11552:355::o;11912:356::-;12114:2;12096:21;;;12133:18;;;12126:30;12192:34;12187:2;12172:18;;12165:62;12259:2;12244:18;;11912:356::o;12273:128::-;12313:3;12344:1;12340:6;12337:1;12334:13;12331:39;;;12350:18;;:::i;:::-;-1:-1:-1;12386:9:15;;12273:128::o;12406:356::-;12608:2;12590:21;;;12627:18;;;12620:30;12686:34;12681:2;12666:18;;12659:62;12753:2;12738:18;;12406:356::o;12767:350::-;12969:2;12951:21;;;13008:2;12988:18;;;12981:30;13047:28;13042:2;13027:18;;13020:56;13108:2;13093:18;;12767:350::o;13122:352::-;13324:2;13306:21;;;13363:2;13343:18;;;13336:30;13402;13397:2;13382:18;;13375:58;13465:2;13450:18;;13122:352::o;14713:336::-;14915:2;14897:21;;;14954:2;14934:18;;;14927:30;-1:-1:-1;;;14988:2:15;14973:18;;14966:42;15040:2;15025:18;;14713:336::o;15757:470::-;15936:3;15974:6;15968:13;15990:53;16036:6;16031:3;16024:4;16016:6;16012:17;15990:53;:::i;:::-;16106:13;;16065:16;;;;16128:57;16106:13;16065:16;16162:4;16150:17;;16128:57;:::i;:::-;16201:20;;15757:470;-1:-1:-1;;;;15757:470:15:o;17867:125::-;17907:4;17935:1;17932;17929:8;17926:34;;;17940:18;;:::i;:::-;-1:-1:-1;17977:9:15;;17867:125::o;17997:414::-;18199:2;18181:21;;;18238:2;18218:18;;;18211:30;18277:34;18272:2;18257:18;;18250:62;-1:-1:-1;;;18343:2:15;18328:18;;18321:48;18401:3;18386:19;;17997:414::o;18416:112::-;18448:1;18474;18464:35;;18479:18;;:::i;:::-;-1:-1:-1;18513:9:15;;18416:112::o;18533:489::-;-1:-1:-1;;;;;18802:15:15;;;18784:34;;18854:15;;18849:2;18834:18;;18827:43;18901:2;18886:18;;18879:34;;;18949:3;18944:2;18929:18;;18922:31;;;18727:4;;18970:46;;18996:19;;18988:6;18970:46;:::i;:::-;18962:54;18533:489;-1:-1:-1;;;;;;18533:489:15:o;19027:249::-;19096:6;19149:2;19137:9;19128:7;19124:23;19120:32;19117:52;;;19165:1;19162;19155:12;19117:52;19197:9;19191:16;19216:30;19240:5;19216:30;:::i;19281:127::-;19342:10;19337:3;19333:20;19330:1;19323:31;19373:4;19370:1;19363:15;19397:4;19394:1;19387:15

Swarm Source

ipfs://4b7074c4df3a11f69759a46fd578642f878fe3632780be899ba3be766084130b
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.