ETH Price: $3,102.40 (+1.17%)
Gas: 2 Gwei

Token

BlankFaceHaylos (BFH)
 

Overview

Max Total Supply

2,466 BFH

Holders

1,290

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
williamguzman.eth
Balance
2 BFH
0x64db4684d25bb3e105f96f0bd482f8ed0486e6c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BlankFaceHaylos

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

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


abstract contract BLANKFACE {
  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 './Functions.sol';
import './Metadata.sol';

contract BlankFaceHaylos is ERC721Enumerable, Ownable, Functions, Metadata {
  using Strings for uint256;
  
  BLANKFACE private blankface;

  uint256 public constant COLLECTION1_MAX = 10000;
  uint256 public constant COLLECTION2_MAX = 10000;
  uint256 public constant COLLECTION3_MAX = 10000;
  uint256 public constant NFT_MAX = COLLECTION1_MAX + COLLECTION2_MAX + COLLECTION3_MAX;
  uint256 public constant PURCHASE_LIMIT = 3;
  uint256 public constant PRICE = 0.01 ether;
  uint256 public constant mint3loop = 1;

  bool public isCollection1Active = false;
  bool public isCollection2Active = false;
  bool public isCollection3Active = false;
  bool public isMasterActive = false;
  
  string public message;

  uint256 public Collection1MaxMint = 1;
  uint256 public Collection2MaxMint = 1;
  uint256 public Collection3MaxMint = 1;

  /// @dev We will use these to be able to calculate remaining correctly.
  uint256 public totalCollection1Supply;
  uint256 public totalCollection2Supply;
  uint256 public totalCollection3Supply;

  mapping(address => bool) private _Collection1;
  mapping(address => uint256) private _Collection1Claimed;
  mapping(address => bool) private _Collection2;
  mapping(address => uint256) private _Collection2Claimed;
  mapping(address => bool) private _Collection3;
  mapping(address => uint256) private _Collection3Claimed;

  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';
  

  constructor(string memory name, string memory symbol, address dependentContractAddress) ERC721(name, symbol) {
 
    blankface = BLANKFACE(dependentContractAddress);
  }
      


//Collection1
  function addToCollection1(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");
      _Collection1[addresses[i]] = true;
      _Collection1Claimed[addresses[i]] > 0 ? _Collection1Claimed[addresses[i]] : 0;
    }
  }
  
  function onCollection1(address addr) external view override returns (bool) {
    return _Collection1[addr];
  }
  
  function removeFromCollection1(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");
      _Collection1[addresses[i]] = false;
    }
  }
  
  function Collection1ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Collection1Claimed[owner];
  }

//Collection2
  function addToCollection2(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");
      _Collection2[addresses[i]] = true;
      _Collection2Claimed[addresses[i]] > 0 ? _Collection2Claimed[addresses[i]] : 0;
    }
  }
  
  function onCollection2(address addr) external view override returns (bool) {
    return _Collection2[addr];
  }
  
  function removeFromCollection2(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");
      _Collection2[addresses[i]] = false;
    }
  }
  
  function Collection2ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Collection2Claimed[owner];
  }

//Collection3
  function addToCollection3(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");
      _Collection3[addresses[i]] = true;
      _Collection3Claimed[addresses[i]] > 0 ? _Collection3Claimed[addresses[i]] : 0;
    }
  }
  
  function onCollection3(address addr) external view override returns (bool) {
    return _Collection3[addr];
  }
  
  function removeFromCollection3(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");
      _Collection3[addresses[i]] = false;
    }
  }
  
  function Collection3ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Collection3Claimed[owner];
  }

  function mintCollection1(uint256 numberOfTokens) external override payable {
      
    uint balance = blankface.balanceOf(msg.sender);
    
    if (balance>0) {
    
    require(balance > 0, "Must hold at least BlankFace");
    
    
    
    require(isMasterActive, 'Contract is not active');
    require(isCollection1Active, 'Collection is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection1MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection1Supply + numberOfTokens <= COLLECTION1_MAX, 'Purchase would exceed max supply');
    require(_Collection1Claimed[msg.sender] + numberOfTokens <= Collection1MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

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

      uint256 tokenId = totalCollection1Supply + 1;

      totalCollection1Supply += 1;
      _Collection1Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    if (balance == 0) {

    require(isMasterActive, 'Contract is not active');
    require(isCollection1Active, 'Collection is not active');
    require(_Collection1[msg.sender], 'Must be on Haylos Whitelist');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection2MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection1Supply + numberOfTokens <= COLLECTION1_MAX, 'Purchase would exceed max supply');
    require(_Collection1Claimed[msg.sender] + numberOfTokens <= Collection1MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

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

      uint256 tokenId = totalCollection1Supply + 1;

      totalCollection1Supply += 1;
      _Collection1Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }

  
  }
  
 function mintCollection2(uint256 numberOfTokens) external override payable {
      
    uint balance = blankface.balanceOf(msg.sender);
    
    if (balance>0) {
    
    require(balance > 0, "Must hold at least BlankFace");
    
    
    
    require(isMasterActive, 'Contract is not active');
    require(isCollection2Active, 'Collection is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection2MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection2Supply + numberOfTokens <= COLLECTION2_MAX, 'Purchase would exceed max supply');
    require(_Collection2Claimed[msg.sender] + numberOfTokens <= Collection2MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

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

      uint256 tokenId = COLLECTION1_MAX + totalCollection2Supply + 1;

      totalCollection2Supply += 1;
      _Collection2Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    if (balance == 0) {

    require(isMasterActive, 'Contract is not active');
    require(isCollection2Active, 'Collection is not active');
    require(_Collection2[msg.sender], 'Must be on Haylos Whitelist');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection2MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection2Supply + numberOfTokens <= COLLECTION2_MAX, 'Purchase would exceed max supply');
    require(_Collection2Claimed[msg.sender] + numberOfTokens <= Collection2MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

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

      uint256 tokenId = COLLECTION1_MAX + totalCollection2Supply + 1;

      totalCollection2Supply += 1;
      _Collection2Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }

  
  }
  
  function mintCollection3(uint256 numberOfTokens) external override payable {
      
    uint balance = blankface.balanceOf(msg.sender);
    
    if (balance>0) {
    
    require(balance > 0, "Must hold at least BlankFace");
    
    
    
    require(isMasterActive, 'Contract is not active');
    require(isCollection3Active, 'Collection is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection3MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection3Supply + numberOfTokens <= COLLECTION3_MAX, 'Purchase would exceed max supply');
    require(_Collection3Claimed[msg.sender] + numberOfTokens <= Collection3MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

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

      uint256 tokenId = COLLECTION1_MAX + COLLECTION2_MAX + totalCollection1Supply + 1;

      totalCollection3Supply += 1;
      _Collection3Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    if (balance == 0) {

    require(isMasterActive, 'Contract is not active');
    require(isCollection3Active, 'Collection is not active');
    require(_Collection3[msg.sender], 'Must be on Haylos Whitelist');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection3MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection3Supply + numberOfTokens <= COLLECTION3_MAX, 'Purchase would exceed max supply');
    require(_Collection3Claimed[msg.sender] + numberOfTokens <= Collection3MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

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

      uint256 tokenId = COLLECTION1_MAX + COLLECTION2_MAX + totalCollection3Supply + 1;

      totalCollection3Supply += 1;
      _Collection3Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }

  
  }
  
  function mintall3(uint256 numberOfTokens) external override payable {

 uint balance = blankface.balanceOf(msg.sender);
    
    if (balance>0) {


    require(isMasterActive, 'Contract is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
    require(_Collection1Claimed[msg.sender] + _Collection2Claimed[msg.sender] + _Collection3Claimed[msg.sender] + numberOfTokens <= PURCHASE_LIMIT, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < mint3loop; i++) {

      uint256 tokenId1 = totalCollection1Supply + 1;
      uint256 tokenId2 = COLLECTION1_MAX + totalCollection2Supply + 1;
      uint256 tokenId3 = COLLECTION1_MAX + COLLECTION2_MAX + totalCollection3Supply + 1;
    require(_Collection1Claimed[msg.sender] + _Collection2Claimed[msg.sender] + _Collection3Claimed[msg.sender] + numberOfTokens <= PURCHASE_LIMIT, 'Purchase exceeds max allowed');

      totalCollection1Supply += 1;
      _Collection1Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId1);
      
      totalCollection2Supply += 1;
      _Collection2Claimed[msg.sender] += 1;
       _safeMint(msg.sender, tokenId2);
      
      totalCollection3Supply += 1;
      _Collection3Claimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId3);

    }
    
    }
    
    if (balance == 0) {

    require(isMasterActive, 'Contract is not active');
    require(_Collection1[msg.sender]);
    require(_Collection2[msg.sender]);
    require(_Collection3[msg.sender]);
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
    require(_Collection1Claimed[msg.sender] + _Collection2Claimed[msg.sender] + _Collection3Claimed[msg.sender] + numberOfTokens <= PURCHASE_LIMIT, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < mint3loop; i++) {

      uint256 tokenId1 = totalCollection1Supply + 1;
      uint256 tokenId2 = COLLECTION1_MAX + totalCollection2Supply + 1;
      uint256 tokenId3 = COLLECTION1_MAX + COLLECTION2_MAX + totalCollection3Supply + 1;
    require(_Collection1Claimed[msg.sender] + _Collection2Claimed[msg.sender] + _Collection3Claimed[msg.sender] + numberOfTokens <= PURCHASE_LIMIT, 'Purchase exceeds max allowed');

      totalCollection1Supply += 1;
      _Collection1Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId1);
      
      totalCollection2Supply += 1;
      _Collection2Claimed[msg.sender] += 1;
       _safeMint(msg.sender, tokenId2);
      
      totalCollection3Supply += 1;
      _Collection3Claimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId3);

    }
    
    
    
    }
  
  }
  
 

  function MasterActive(bool _isMasterActive) external override onlyOwner {
    isMasterActive = _isMasterActive;
  }
  


  function Collection1Active(bool _isCollection1Active) external override onlyOwner {
    isCollection1Active = _isCollection1Active;
  }
  
  function Collection2Active(bool _isCollection2Active) external override onlyOwner {
    isCollection2Active = _isCollection2Active;
  }
  
  function Collection3Active(bool _isCollection3Active) external override onlyOwner {
    isCollection3Active = _isCollection3Active;
  }

  function setMessage(string calldata messageString) external override onlyOwner {
    message = messageString;
  }
  
  function withdraw() external override onlyOwner {
    uint256 balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }

  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 3 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: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

  function removeFromCollection1(address[] calldata addresses) external;

  function addToCollection2(address[] calldata addresses) external;

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

  function removeFromCollection2(address[] calldata addresses) external;

  function addToCollection3(address[] calldata addresses) external;

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

  function removeFromCollection3(address[] calldata addresses) external;

  function Collection1ClaimedBy(address owner) external returns (uint256);

  function Collection2ClaimedBy(address owner) external returns (uint256);

  function Collection3ClaimedBy(address owner) external returns (uint256);

  function mintCollection1(uint256 numberOfTokens) external payable;

  function mintCollection2(uint256 numberOfTokens) external payable;

  function mintCollection3(uint256 numberOfTokens) external payable;

  function mintall3(uint256 numberOfTokens) external payable;

  function MasterActive(bool isMasterActive) external;

  function Collection1Active(bool isCollection1Active) external;

  function Collection2Active(bool isCollection2Active) external;

  function Collection3Active(bool isCollection3Active) external;

  function setMessage(string memory messageString) external;

  function withdraw() external;
}

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":"dependentContractAddress","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":"COLLECTION1_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION2_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION3_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isCollection1Active","type":"bool"}],"name":"Collection1Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Collection1ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Collection1MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isCollection2Active","type":"bool"}],"name":"Collection2Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Collection2ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Collection2MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isCollection3Active","type":"bool"}],"name":"Collection3Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Collection3ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Collection3MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"PRICE","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":"address[]","name":"addresses","type":"address[]"}],"name":"addToCollection1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToCollection2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToCollection3","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":"isCollection1Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCollection2Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCollection3Active","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":"message","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint3loop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCollection1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCollection2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCollection3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintall3","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":"onCollection1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onCollection2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onCollection3","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":"removeFromCollection1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromCollection2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromCollection3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"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":"messageString","type":"string"}],"name":"setMessage","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":"totalCollection1Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollection2Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollection3Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b805463ffffffff60a01b191690556001600d819055600e819055600f5560a06040819052600060808190526200003a9160199162000178565b506040805160208101918290526000908190526200005b91601a9162000178565b506040805160208101918290526000908190526200007c91601b9162000178565b503480156200008a57600080fd5b50604051620049b4380380620049b4833981016040819052620000ad91620002d5565b825183908390620000c690600090602085019062000178565b508051620000dc90600190602084019062000178565b505050620000f9620000f36200012260201b60201c565b62000126565b600b80546001600160a01b0319166001600160a01b039290921691909117905550620003b59050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001869062000362565b90600052602060002090601f016020900481019282620001aa5760008555620001f5565b82601f10620001c557805160ff1916838001178555620001f5565b82800160010185558215620001f5579182015b82811115620001f5578251825591602001919060010190620001d8565b506200020392915062000207565b5090565b5b8082111562000203576000815560010162000208565b600082601f8301126200023057600080fd5b81516001600160401b03808211156200024d576200024d6200039f565b604051601f8301601f19908116603f011681019082821181831017156200027857620002786200039f565b816040528381526020925086838588010111156200029557600080fd5b600091505b83821015620002b957858201830151818301840152908201906200029a565b83821115620002cb5760008385830101525b9695505050505050565b600080600060608486031215620002eb57600080fd5b83516001600160401b03808211156200030357600080fd5b62000311878388016200021e565b945060208601519150808211156200032857600080fd5b5062000337868287016200021e565b604086015190935090506001600160a01b03811681146200035757600080fd5b809150509250925092565b600181811c908216806200037757607f821691505b602082108114156200039957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6145ef80620003c56000396000f3fe6080604052600436106103b75760003560e01c80637a002ed8116101f2578063b1f433f21161010d578063e985e9c5116100a0578063f1e80af81161006f578063f1e80af814610a9f578063f2fde38b14610ab5578063fa5bfb1814610ad5578063fb87b3c014610af657600080fd5b8063e985e9c514610a17578063ea98306f14610a60578063ecf0397514610a76578063efc9b13114610a8957600080fd5b8063d75e6110116100dc578063d75e6110146109b8578063e21f37ce146109cd578063e33a66cc146109e2578063e8a3d48514610a0257600080fd5b8063b1f433f214610943578063b88d4fde14610963578063c30e768414610983578063c87b56dd1461099857600080fd5b806395d89b4111610185578063a102f03311610154578063a102f033146108ce578063a22cb465146108ee578063a2a3a3131461090e578063a73d8ca71461092357600080fd5b806395d89b411461086657806399c56ad91461087b5780639aa035d81461089b5780639bc606c6146108bb57600080fd5b80638e736dab116101c15780638e736dab146105f15780639123468a14610825578063923fc1d1146105f1578063938e3d7b1461084657600080fd5b80637a002ed8146107a057806381a2bc1a146107d95780638d859f3e146107ec5780638da5cb5b1461080757600080fd5b806355f804b3116102e25780636718b7ee116102755780636e83843a116102445780636e83843a1461071257806370a0823114610732578063715018a614610752578063768a8dcb1461076757600080fd5b80636718b7ee1461069e578063685f00a3146106be5780636c21d5ee146106de5780636d2643f7146106ff57600080fd5b80635f54d29b116102b15780635f54d29b1461062857806362fd9ff41461063e5780636340fcbb1461065e5780636352211e1461067e57600080fd5b806355f804b3146105b15780635a4d334f146105d15780635cc7b76b146105f15780635ee6da011461060757600080fd5b80632631ff051161035a5780633ccfd60b116103295780633ccfd60b1461054657806342842e0e1461055b5780634f6ccce71461057b5780635412fb171461059b57600080fd5b80632631ff05146104c65780632f745c59146104e65780633495eda414610506578063368b87721461052657600080fd5b8063081812fc11610396578063081812fc14610437578063095ea7b31461046f57806318160ddd1461049157806323b872dd146104a657600080fd5b8062b2d368146103bc57806301ffc9a7146103e557806306fdde0314610415575b600080fd5b3480156103c857600080fd5b506103d2600e5481565b6040519081526020015b60405180910390f35b3480156103f157600080fd5b50610405610400366004613fad565b610b2f565b60405190151581526020016103dc565b34801561042157600080fd5b5061042a610b5a565b6040516103dc9190614111565b34801561044357600080fd5b50610457610452366004614047565b610bec565b6040516001600160a01b0390911681526020016103dc565b34801561047b57600080fd5b5061048f61048a366004613ef3565b610c86565b005b34801561049d57600080fd5b506008546103d2565b3480156104b257600080fd5b5061048f6104c1366004613db1565b610d9c565b3480156104d257600080fd5b5061048f6104e1366004613f1d565b610dcd565b3480156104f257600080fd5b506103d2610501366004613ef3565b610eb9565b34801561051257600080fd5b5061048f610521366004613f1d565b610f4f565b34801561053257600080fd5b5061048f610541366004613fe7565b6110e3565b34801561055257600080fd5b5061048f611119565b34801561056757600080fd5b5061048f610576366004613db1565b611176565b34801561058757600080fd5b506103d2610596366004614047565b611191565b3480156105a757600080fd5b506103d260105481565b3480156105bd57600080fd5b5061048f6105cc366004613fe7565b611224565b3480156105dd57600080fd5b5061048f6105ec366004613f92565b61125a565b3480156105fd57600080fd5b506103d261271081565b34801561061357600080fd5b50600b5461040590600160a81b900460ff1681565b34801561063457600080fd5b506103d260115481565b34801561064a57600080fd5b5061048f610659366004613f1d565b6112a2565b34801561066a57600080fd5b5061048f610679366004613f92565b611436565b34801561068a57600080fd5b50610457610699366004614047565b61147e565b3480156106aa57600080fd5b5061048f6106b9366004613f1d565b6114f5565b3480156106ca57600080fd5b5061048f6106d9366004613f1d565b611689565b3480156106ea57600080fd5b50600b5461040590600160b01b900460ff1681565b61048f61070d366004614047565b611775565b34801561071e57600080fd5b5061048f61072d366004613fe7565b611bcd565b34801561073e57600080fd5b506103d261074d366004613d63565b611c03565b34801561075e57600080fd5b5061048f611c8a565b34801561077357600080fd5b50610405610782366004613d63565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156107ac57600080fd5b506104056107bb366004613d63565b6001600160a01b031660009081526017602052604090205460ff1690565b61048f6107e7366004614047565b611cc0565b3480156107f857600080fd5b506103d2662386f26fc1000081565b34801561081357600080fd5b50600a546001600160a01b0316610457565b34801561083157600080fd5b50600b5461040590600160b81b900460ff1681565b34801561085257600080fd5b5061048f610861366004613fe7565b612343565b34801561087257600080fd5b5061042a612379565b34801561088757600080fd5b5061048f610896366004613f1d565b612388565b3480156108a757600080fd5b506103d26108b6366004613d63565b612474565b61048f6108c9366004614047565b6124b8565b3480156108da57600080fd5b506103d26108e9366004613d63565b612928565b3480156108fa57600080fd5b5061048f610909366004613ec9565b61296c565b34801561091a57600080fd5b506103d2600181565b34801561092f57600080fd5b5061048f61093e366004613f92565b612a31565b34801561094f57600080fd5b5061048f61095e366004613f92565b612a79565b34801561096f57600080fd5b5061048f61097e366004613ded565b612ac1565b34801561098f57600080fd5b506103d2612af9565b3480156109a457600080fd5b5061042a6109b3366004614047565b612b13565b3480156109c457600080fd5b506103d2600381565b3480156109d957600080fd5b5061042a612ccb565b3480156109ee57600080fd5b506103d26109fd366004613d63565b612d59565b348015610a0e57600080fd5b5061042a612d9d565b348015610a2357600080fd5b50610405610a32366004613d7e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6c57600080fd5b506103d2600f5481565b61048f610a84366004614047565b612dac565b348015610a9557600080fd5b506103d2600d5481565b348015610aab57600080fd5b506103d260125481565b348015610ac157600080fd5b5061048f610ad0366004613d63565b613230565b348015610ae157600080fd5b50600b5461040590600160a01b900460ff1681565b348015610b0257600080fd5b50610405610b11366004613d63565b6001600160a01b031660009081526013602052604090205460ff1690565b60006001600160e01b0319821663780e9d6360e01b1480610b545750610b54826132cb565b92915050565b606060008054610b69906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b95906144cb565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c918261147e565b9050806001600160a01b0316836001600160a01b03161415610cff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c61565b336001600160a01b0382161480610d1b5750610d1b8133610a32565b610d8d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c61565b610d97838361331b565b505050565b610da63382613389565b610dc25760405162461bcd60e51b8152600401610c6190614349565b610d97838383613480565b600a546001600160a01b03163314610df75760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d97576000838383818110610e1657610e16614577565b9050602002016020810190610e2b9190613d63565b6001600160a01b03161415610e525760405162461bcd60e51b8152600401610c6190614312565b600060156000858585818110610e6a57610e6a614577565b9050602002016020810190610e7f9190613d63565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eb181614506565b915050610dfa565b6000610ec483611c03565b8210610f265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c61565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f795760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d97576000838383818110610f9857610f98614577565b9050602002016020810190610fad9190613d63565b6001600160a01b03161415610fd45760405162461bcd60e51b8152600401610c6190614312565b600160176000858585818110610fec57610fec614577565b90506020020160208101906110019190613d63565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061104157611041614577565b90506020020160208101906110569190613d63565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116110835760006110d0565b6018600084848481811061109957611099614577565b90506020020160208101906110ae9190613d63565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806110db81614506565b915050610f7c565b600a546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610c61906142dd565b610d97600c8383613c9e565b600a546001600160a01b031633146111435760405162461bcd60e51b8152600401610c61906142dd565b6040514790339082156108fc029083906000818181858888f19350505050158015611172573d6000803e3d6000fd5b5050565b610d9783838360405180602001604052806000815250612ac1565b600061119c60085490565b82106111ff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c61565b6008828154811061121257611212614577565b90600052602060002001549050919050565b600a546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610c61906142dd565b610d97601a8383613c9e565b600a546001600160a01b031633146112845760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b031633146112cc5760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d975760008383838181106112eb576112eb614577565b90506020020160208101906113009190613d63565b6001600160a01b031614156113275760405162461bcd60e51b8152600401610c6190614312565b60016015600085858581811061133f5761133f614577565b90506020020160208101906113549190613d63565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560168185858581811061139457611394614577565b90506020020160208101906113a99190613d63565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116113d6576000611423565b601660008484848181106113ec576113ec614577565b90506020020160208101906114019190613d63565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061142e81614506565b9150506112cf565b600a546001600160a01b031633146114605760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160a81b0260ff60a81b19909216919091179055565b6000818152600260205260408120546001600160a01b031680610b545760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c61565b600a546001600160a01b0316331461151f5760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d9757600083838381811061153e5761153e614577565b90506020020160208101906115539190613d63565b6001600160a01b0316141561157a5760405162461bcd60e51b8152600401610c6190614312565b60016013600085858581811061159257611592614577565b90506020020160208101906115a79190613d63565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556014818585858181106115e7576115e7614577565b90506020020160208101906115fc9190613d63565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611629576000611676565b6014600084848481811061163f5761163f614577565b90506020020160208101906116549190613d63565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061168181614506565b915050611522565b600a546001600160a01b031633146116b35760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d975760008383838181106116d2576116d2614577565b90506020020160208101906116e79190613d63565b6001600160a01b0316141561170e5760405162461bcd60e51b8152600401610c6190614312565b60006017600085858581811061172657611726614577565b905060200201602081019061173b9190613d63565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061176d81614506565b9150506116b6565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156117b957600080fd5b505afa1580156117cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f19190614060565b905080156119da57600081116118195760405162461bcd60e51b8152600401610c6190614124565b600b54600160b81b900460ff166118425760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a01b900460ff1661186b5760405162461bcd60e51b8152600401610c61906141ad565b612710611878818061443d565b611882919061443d565b600854106118a25760405162461bcd60e51b8152600401610c61906143d1565b600d548211156118c45760405162461bcd60e51b8152600401610c6190614408565b612710826010546118d5919061443d565b11156118f35760405162461bcd60e51b8152600401610c6190614278565b600d543360009081526014602052604090205461191190849061443d565b111561192f5760405162461bcd60e51b8152600401610c619061439a565b3461194183662386f26fc10000614469565b111561195f5760405162461bcd60e51b8152600401610c619061420a565b60005b828110156119d8576000601054600161197b919061443d565b9050600160106000828254611990919061443d565b90915550503360009081526014602052604081208054600192906119b590849061443d565b909155506119c59050338261362b565b50806119d081614506565b915050611962565b505b8061117257600b54600160b81b900460ff16611a085760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a01b900460ff16611a315760405162461bcd60e51b8152600401610c61906141ad565b3360009081526013602052604090205460ff16611a605760405162461bcd60e51b8152600401610c6190614241565b612710611a6d818061443d565b611a77919061443d565b60085410611a975760405162461bcd60e51b8152600401610c61906143d1565b600e54821115611ab95760405162461bcd60e51b8152600401610c6190614408565b61271082601054611aca919061443d565b1115611ae85760405162461bcd60e51b8152600401610c6190614278565b600d5433600090815260146020526040902054611b0690849061443d565b1115611b245760405162461bcd60e51b8152600401610c619061439a565b34611b3683662386f26fc10000614469565b1115611b545760405162461bcd60e51b8152600401610c619061420a565b60005b82811015610d975760006010546001611b70919061443d565b9050600160106000828254611b85919061443d565b9091555050336000908152601460205260408120805460019290611baa90849061443d565b90915550611bba9050338261362b565b5080611bc581614506565b915050611b57565b600a546001600160a01b03163314611bf75760405162461bcd60e51b8152600401610c61906142dd565b610d97601b8383613c9e565b60006001600160a01b038216611c6e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c61565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cb45760405162461bcd60e51b8152600401610c61906142dd565b611cbe6000613645565b565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611d0457600080fd5b505afa158015611d18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3c9190614060565b9050801561201857600b54600160b81b900460ff16611d6d5760405162461bcd60e51b8152600401610c61906142ad565b612710611d7a818061443d565b611d84919061443d565b60085410611da45760405162461bcd60e51b8152600401610c61906143d1565b6003821115611dc55760405162461bcd60e51b8152600401610c6190614408565b336000908152601860209081526040808320546016835281842054601490935292205460039285929091611df9919061443d565b611e03919061443d565b611e0d919061443d565b1115611e2b5760405162461bcd60e51b8152600401610c619061439a565b34611e3d83662386f26fc10000614469565b1115611e5b5760405162461bcd60e51b8152600401610c619061420a565b60005b60018110156120165760006010546001611e78919061443d565b90506000601154612710611e8c919061443d565b611e9790600161443d565b9050600060125461271080611eac919061443d565b611eb6919061443d565b611ec190600161443d565b3360009081526018602090815260408083205460168352818420546014909352922054929350600392899291611ef69161443d565b611f00919061443d565b611f0a919061443d565b1115611f285760405162461bcd60e51b8152600401610c619061439a565b600160106000828254611f3b919061443d565b9091555050336000908152601460205260408120805460019290611f6090849061443d565b90915550611f709050338461362b565b600160116000828254611f83919061443d565b9091555050336000908152601660205260408120805460019290611fa890849061443d565b90915550611fb89050338361362b565b600160126000828254611fcb919061443d565b9091555050336000908152601860205260408120805460019290611ff090849061443d565b909155506120009050338261362b565b505050808061200e90614506565b915050611e5e565b505b8061117257600b54600160b81b900460ff166120465760405162461bcd60e51b8152600401610c61906142ad565b3360009081526013602052604090205460ff1661206257600080fd5b3360009081526015602052604090205460ff1661207e57600080fd5b3360009081526017602052604090205460ff1661209a57600080fd5b6127106120a7818061443d565b6120b1919061443d565b600854106120d15760405162461bcd60e51b8152600401610c61906143d1565b60038211156120f25760405162461bcd60e51b8152600401610c6190614408565b336000908152601860209081526040808320546016835281842054601490935292205460039285929091612126919061443d565b612130919061443d565b61213a919061443d565b11156121585760405162461bcd60e51b8152600401610c619061439a565b3461216a83662386f26fc10000614469565b11156121885760405162461bcd60e51b8152600401610c619061420a565b60005b6001811015610d9757600060105460016121a5919061443d565b905060006011546127106121b9919061443d565b6121c490600161443d565b90506000601254612710806121d9919061443d565b6121e3919061443d565b6121ee90600161443d565b33600090815260186020908152604080832054601683528184205460149093529220549293506003928992916122239161443d565b61222d919061443d565b612237919061443d565b11156122555760405162461bcd60e51b8152600401610c619061439a565b600160106000828254612268919061443d565b909155505033600090815260146020526040812080546001929061228d90849061443d565b9091555061229d9050338461362b565b6001601160008282546122b0919061443d565b90915550503360009081526016602052604081208054600192906122d590849061443d565b909155506122e59050338361362b565b6001601260008282546122f8919061443d565b909155505033600090815260186020526040812080546001929061231d90849061443d565b9091555061232d9050338261362b565b505050808061233b90614506565b91505061218b565b600a546001600160a01b0316331461236d5760405162461bcd60e51b8152600401610c61906142dd565b610d9760198383613c9e565b606060018054610b69906144cb565b600a546001600160a01b031633146123b25760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d975760008383838181106123d1576123d1614577565b90506020020160208101906123e69190613d63565b6001600160a01b0316141561240d5760405162461bcd60e51b8152600401610c6190614312565b60006013600085858581811061242557612425614577565b905060200201602081019061243a9190613d63565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061246c81614506565b9150506123b5565b60006001600160a01b03821661249c5760405162461bcd60e51b8152600401610c61906141e4565b506001600160a01b031660009081526016602052604090205490565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156124fc57600080fd5b505afa158015612510573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125349190614060565b90508015612729576000811161255c5760405162461bcd60e51b8152600401610c6190614124565b600b54600160b81b900460ff166125855760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a81b900460ff166125ae5760405162461bcd60e51b8152600401610c61906141ad565b6127106125bb818061443d565b6125c5919061443d565b600854106125e55760405162461bcd60e51b8152600401610c61906143d1565b600e548211156126075760405162461bcd60e51b8152600401610c6190614408565b61271082601154612618919061443d565b11156126365760405162461bcd60e51b8152600401610c6190614278565b600e543360009081526016602052604090205461265490849061443d565b11156126725760405162461bcd60e51b8152600401610c619061439a565b3461268483662386f26fc10000614469565b11156126a25760405162461bcd60e51b8152600401610c619061420a565b60005b828110156127275760006011546127106126bf919061443d565b6126ca90600161443d565b90506001601160008282546126df919061443d565b909155505033600090815260166020526040812080546001929061270490849061443d565b909155506127149050338261362b565b508061271f81614506565b9150506126a5565b505b8061117257600b54600160b81b900460ff166127575760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a81b900460ff166127805760405162461bcd60e51b8152600401610c61906141ad565b3360009081526015602052604090205460ff166127af5760405162461bcd60e51b8152600401610c6190614241565b6127106127bc818061443d565b6127c6919061443d565b600854106127e65760405162461bcd60e51b8152600401610c61906143d1565b600e548211156128085760405162461bcd60e51b8152600401610c6190614408565b61271082601154612819919061443d565b11156128375760405162461bcd60e51b8152600401610c6190614278565b600e543360009081526016602052604090205461285590849061443d565b11156128735760405162461bcd60e51b8152600401610c619061439a565b3461288583662386f26fc10000614469565b11156128a35760405162461bcd60e51b8152600401610c619061420a565b60005b82811015610d975760006011546127106128c0919061443d565b6128cb90600161443d565b90506001601160008282546128e0919061443d565b909155505033600090815260166020526040812080546001929061290590849061443d565b909155506129159050338261362b565b508061292081614506565b9150506128a6565b60006001600160a01b0382166129505760405162461bcd60e51b8152600401610c61906141e4565b506001600160a01b031660009081526018602052604090205490565b6001600160a01b0382163314156129c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c61565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314612a5b5760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160b81b0260ff60b81b19909216919091179055565b600a546001600160a01b03163314612aa35760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160b01b0260ff60b01b19909216919091179055565b612acb3383613389565b612ae75760405162461bcd60e51b8152600401610c6190614349565b612af384848484613697565b50505050565b612710612b06818061443d565b612b10919061443d565b81565b6000818152600260205260409020546060906001600160a01b0316612b715760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610c61565b6000601b8054612b80906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612bac906144cb565b8015612bf95780601f10612bce57610100808354040283529160200191612bf9565b820191906000526020600020905b815481529060010190602001808311612bdc57829003601f168201915b505050505090506000815111612c9957601a8054612c16906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612c42906144cb565b8015612c8f5780601f10612c6457610100808354040283529160200191612c8f565b820191906000526020600020905b815481529060010190602001808311612c7257829003601f168201915b5050505050612cc4565b80612ca3846136ca565b604051602001612cb49291906140a5565b6040516020818303038152906040525b9392505050565b600c8054612cd8906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612d04906144cb565b8015612d515780601f10612d2657610100808354040283529160200191612d51565b820191906000526020600020905b815481529060010190602001808311612d3457829003601f168201915b505050505081565b60006001600160a01b038216612d815760405162461bcd60e51b8152600401610c61906141e4565b506001600160a01b031660009081526014602052604090205490565b606060198054610b69906144cb565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612df057600080fd5b505afa158015612e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e289190614060565b905080156130275760008111612e505760405162461bcd60e51b8152600401610c6190614124565b600b54600160b81b900460ff16612e795760405162461bcd60e51b8152600401610c61906142ad565b600b54600160b01b900460ff16612ea25760405162461bcd60e51b8152600401610c61906141ad565b612710612eaf818061443d565b612eb9919061443d565b60085410612ed95760405162461bcd60e51b8152600401610c61906143d1565b600f54821115612efb5760405162461bcd60e51b8152600401610c6190614408565b61271082601254612f0c919061443d565b1115612f2a5760405162461bcd60e51b8152600401610c6190614278565b600f5433600090815260186020526040902054612f4890849061443d565b1115612f665760405162461bcd60e51b8152600401610c619061439a565b34612f7883662386f26fc10000614469565b1115612f965760405162461bcd60e51b8152600401610c619061420a565b60005b8281101561302557601054600090612fb36127108061443d565b612fbd919061443d565b612fc890600161443d565b9050600160126000828254612fdd919061443d565b909155505033600090815260186020526040812080546001929061300290849061443d565b909155506130129050338261362b565b508061301d81614506565b915050612f99565b505b8061117257600b54600160b81b900460ff166130555760405162461bcd60e51b8152600401610c61906142ad565b600b54600160b01b900460ff1661307e5760405162461bcd60e51b8152600401610c61906141ad565b3360009081526017602052604090205460ff166130ad5760405162461bcd60e51b8152600401610c6190614241565b6127106130ba818061443d565b6130c4919061443d565b600854106130e45760405162461bcd60e51b8152600401610c61906143d1565b600f548211156131065760405162461bcd60e51b8152600401610c6190614408565b61271082601254613117919061443d565b11156131355760405162461bcd60e51b8152600401610c6190614278565b600f543360009081526018602052604090205461315390849061443d565b11156131715760405162461bcd60e51b8152600401610c619061439a565b3461318383662386f26fc10000614469565b11156131a15760405162461bcd60e51b8152600401610c619061420a565b60005b82811015610d97576012546000906131be6127108061443d565b6131c8919061443d565b6131d390600161443d565b90506001601260008282546131e8919061443d565b909155505033600090815260186020526040812080546001929061320d90849061443d565b9091555061321d9050338261362b565b508061322881614506565b9150506131a4565b600a546001600160a01b0316331461325a5760405162461bcd60e51b8152600401610c61906142dd565b6001600160a01b0381166132bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c61565b6132c881613645565b50565b60006001600160e01b031982166380ac58cd60e01b14806132fc57506001600160e01b03198216635b5e139f60e01b145b80610b5457506301ffc9a760e01b6001600160e01b0319831614610b54565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906133508261147e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166134025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c61565b600061340d8361147e565b9050806001600160a01b0316846001600160a01b031614806134485750836001600160a01b031661343d84610bec565b6001600160a01b0316145b8061347857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166134938261147e565b6001600160a01b0316146134fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c61565b6001600160a01b03821661355d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c61565b6135688383836137c8565b61357360008261331b565b6001600160a01b038316600090815260036020526040812080546001929061359c908490614488565b90915550506001600160a01b03821660009081526003602052604081208054600192906135ca90849061443d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611172828260405180602001604052806000815250613880565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6136a2848484613480565b6136ae848484846138b3565b612af35760405162461bcd60e51b8152600401610c619061415b565b6060816136ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613718578061370281614506565b91506137119050600a83614455565b91506136f2565b60008167ffffffffffffffff8111156137335761373361458d565b6040519080825280601f01601f19166020018201604052801561375d576020820181803683370190505b5090505b841561347857613772600183614488565b915061377f600a86614521565b61378a90603061443d565b60f81b81838151811061379f5761379f614577565b60200101906001600160f81b031916908160001a9053506137c1600a86614455565b9450613761565b6001600160a01b0383166138235761381e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613846565b816001600160a01b0316836001600160a01b0316146138465761384683826139c0565b6001600160a01b03821661385d57610d9781613a5d565b826001600160a01b0316826001600160a01b031614610d9757610d978282613b0c565b61388a8383613b50565b61389760008484846138b3565b610d975760405162461bcd60e51b8152600401610c619061415b565b60006001600160a01b0384163b156139b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906138f79033908990889088906004016140d4565b602060405180830381600087803b15801561391157600080fd5b505af1925050508015613941575060408051601f3d908101601f1916820190925261393e91810190613fca565b60015b61399b573d80801561396f576040519150601f19603f3d011682016040523d82523d6000602084013e613974565b606091505b5080516139935760405162461bcd60e51b8152600401610c619061415b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613478565b506001949350505050565b600060016139cd84611c03565b6139d79190614488565b600083815260076020526040902054909150808214613a2a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613a6f90600190614488565b60008381526009602052604081205460088054939450909284908110613a9757613a97614577565b906000526020600020015490508060088381548110613ab857613ab8614577565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613af057613af0614561565b6001900381819060005260206000200160009055905550505050565b6000613b1783611c03565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216613ba65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c61565b6000818152600260205260409020546001600160a01b031615613c0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c61565b613c17600083836137c8565b6001600160a01b0382166000908152600360205260408120805460019290613c4090849061443d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613caa906144cb565b90600052602060002090601f016020900481019282613ccc5760008555613d12565b82601f10613ce55782800160ff19823516178555613d12565b82800160010185558215613d12579182015b82811115613d12578235825591602001919060010190613cf7565b50613d1e929150613d22565b5090565b5b80821115613d1e5760008155600101613d23565b80356001600160a01b0381168114613d4e57600080fd5b919050565b80358015158114613d4e57600080fd5b600060208284031215613d7557600080fd5b612cc482613d37565b60008060408385031215613d9157600080fd5b613d9a83613d37565b9150613da860208401613d37565b90509250929050565b600080600060608486031215613dc657600080fd5b613dcf84613d37565b9250613ddd60208501613d37565b9150604084013590509250925092565b60008060008060808587031215613e0357600080fd5b613e0c85613d37565b9350613e1a60208601613d37565b925060408501359150606085013567ffffffffffffffff80821115613e3e57600080fd5b818701915087601f830112613e5257600080fd5b813581811115613e6457613e6461458d565b604051601f8201601f19908116603f01168101908382118183101715613e8c57613e8c61458d565b816040528281528a6020848701011115613ea557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215613edc57600080fd5b613ee583613d37565b9150613da860208401613d53565b60008060408385031215613f0657600080fd5b613f0f83613d37565b946020939093013593505050565b60008060208385031215613f3057600080fd5b823567ffffffffffffffff80821115613f4857600080fd5b818501915085601f830112613f5c57600080fd5b813581811115613f6b57600080fd5b8660208260051b8501011115613f8057600080fd5b60209290920196919550909350505050565b600060208284031215613fa457600080fd5b612cc482613d53565b600060208284031215613fbf57600080fd5b8135612cc4816145a3565b600060208284031215613fdc57600080fd5b8151612cc4816145a3565b60008060208385031215613ffa57600080fd5b823567ffffffffffffffff8082111561401257600080fd5b818501915085601f83011261402657600080fd5b81358181111561403557600080fd5b866020828501011115613f8057600080fd5b60006020828403121561405957600080fd5b5035919050565b60006020828403121561407257600080fd5b5051919050565b6000815180845261409181602086016020860161449f565b601f01601f19169290920160200192915050565b600083516140b781846020880161449f565b8351908301906140cb81836020880161449f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061410790830184614079565b9695505050505050565b602081526000612cc46020830184614079565b6020808252601c908201527f4d75737420686f6c64206174206c6561737420426c616e6b4661636500000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f436f6c6c656374696f6e206973206e6f74206163746976650000000000000000604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252601b908201527f4d757374206265206f6e204861796c6f732057686974656c6973740000000000604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6000821982111561445057614450614535565b500190565b6000826144645761446461454b565b500490565b600081600019048311821515161561448357614483614535565b500290565b60008282101561449a5761449a614535565b500390565b60005b838110156144ba5781810151838201526020016144a2565b83811115612af35750506000910152565b600181811c908216806144df57607f821691505b6020821081141561450057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561451a5761451a614535565b5060010190565b6000826145305761453061454b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146132c857600080fdfea2646970667358221220088568d4a6e2414908455c2680a5059e53403e6d0bc2886325281f7c5ffd2d5b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000006f8b41b72c04b2bba587fc7b09dbfb877ca7d04000000000000000000000000000000000000000000000000000000000000000f426c616e6b466163654861796c6f73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034246480000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103b75760003560e01c80637a002ed8116101f2578063b1f433f21161010d578063e985e9c5116100a0578063f1e80af81161006f578063f1e80af814610a9f578063f2fde38b14610ab5578063fa5bfb1814610ad5578063fb87b3c014610af657600080fd5b8063e985e9c514610a17578063ea98306f14610a60578063ecf0397514610a76578063efc9b13114610a8957600080fd5b8063d75e6110116100dc578063d75e6110146109b8578063e21f37ce146109cd578063e33a66cc146109e2578063e8a3d48514610a0257600080fd5b8063b1f433f214610943578063b88d4fde14610963578063c30e768414610983578063c87b56dd1461099857600080fd5b806395d89b4111610185578063a102f03311610154578063a102f033146108ce578063a22cb465146108ee578063a2a3a3131461090e578063a73d8ca71461092357600080fd5b806395d89b411461086657806399c56ad91461087b5780639aa035d81461089b5780639bc606c6146108bb57600080fd5b80638e736dab116101c15780638e736dab146105f15780639123468a14610825578063923fc1d1146105f1578063938e3d7b1461084657600080fd5b80637a002ed8146107a057806381a2bc1a146107d95780638d859f3e146107ec5780638da5cb5b1461080757600080fd5b806355f804b3116102e25780636718b7ee116102755780636e83843a116102445780636e83843a1461071257806370a0823114610732578063715018a614610752578063768a8dcb1461076757600080fd5b80636718b7ee1461069e578063685f00a3146106be5780636c21d5ee146106de5780636d2643f7146106ff57600080fd5b80635f54d29b116102b15780635f54d29b1461062857806362fd9ff41461063e5780636340fcbb1461065e5780636352211e1461067e57600080fd5b806355f804b3146105b15780635a4d334f146105d15780635cc7b76b146105f15780635ee6da011461060757600080fd5b80632631ff051161035a5780633ccfd60b116103295780633ccfd60b1461054657806342842e0e1461055b5780634f6ccce71461057b5780635412fb171461059b57600080fd5b80632631ff05146104c65780632f745c59146104e65780633495eda414610506578063368b87721461052657600080fd5b8063081812fc11610396578063081812fc14610437578063095ea7b31461046f57806318160ddd1461049157806323b872dd146104a657600080fd5b8062b2d368146103bc57806301ffc9a7146103e557806306fdde0314610415575b600080fd5b3480156103c857600080fd5b506103d2600e5481565b6040519081526020015b60405180910390f35b3480156103f157600080fd5b50610405610400366004613fad565b610b2f565b60405190151581526020016103dc565b34801561042157600080fd5b5061042a610b5a565b6040516103dc9190614111565b34801561044357600080fd5b50610457610452366004614047565b610bec565b6040516001600160a01b0390911681526020016103dc565b34801561047b57600080fd5b5061048f61048a366004613ef3565b610c86565b005b34801561049d57600080fd5b506008546103d2565b3480156104b257600080fd5b5061048f6104c1366004613db1565b610d9c565b3480156104d257600080fd5b5061048f6104e1366004613f1d565b610dcd565b3480156104f257600080fd5b506103d2610501366004613ef3565b610eb9565b34801561051257600080fd5b5061048f610521366004613f1d565b610f4f565b34801561053257600080fd5b5061048f610541366004613fe7565b6110e3565b34801561055257600080fd5b5061048f611119565b34801561056757600080fd5b5061048f610576366004613db1565b611176565b34801561058757600080fd5b506103d2610596366004614047565b611191565b3480156105a757600080fd5b506103d260105481565b3480156105bd57600080fd5b5061048f6105cc366004613fe7565b611224565b3480156105dd57600080fd5b5061048f6105ec366004613f92565b61125a565b3480156105fd57600080fd5b506103d261271081565b34801561061357600080fd5b50600b5461040590600160a81b900460ff1681565b34801561063457600080fd5b506103d260115481565b34801561064a57600080fd5b5061048f610659366004613f1d565b6112a2565b34801561066a57600080fd5b5061048f610679366004613f92565b611436565b34801561068a57600080fd5b50610457610699366004614047565b61147e565b3480156106aa57600080fd5b5061048f6106b9366004613f1d565b6114f5565b3480156106ca57600080fd5b5061048f6106d9366004613f1d565b611689565b3480156106ea57600080fd5b50600b5461040590600160b01b900460ff1681565b61048f61070d366004614047565b611775565b34801561071e57600080fd5b5061048f61072d366004613fe7565b611bcd565b34801561073e57600080fd5b506103d261074d366004613d63565b611c03565b34801561075e57600080fd5b5061048f611c8a565b34801561077357600080fd5b50610405610782366004613d63565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156107ac57600080fd5b506104056107bb366004613d63565b6001600160a01b031660009081526017602052604090205460ff1690565b61048f6107e7366004614047565b611cc0565b3480156107f857600080fd5b506103d2662386f26fc1000081565b34801561081357600080fd5b50600a546001600160a01b0316610457565b34801561083157600080fd5b50600b5461040590600160b81b900460ff1681565b34801561085257600080fd5b5061048f610861366004613fe7565b612343565b34801561087257600080fd5b5061042a612379565b34801561088757600080fd5b5061048f610896366004613f1d565b612388565b3480156108a757600080fd5b506103d26108b6366004613d63565b612474565b61048f6108c9366004614047565b6124b8565b3480156108da57600080fd5b506103d26108e9366004613d63565b612928565b3480156108fa57600080fd5b5061048f610909366004613ec9565b61296c565b34801561091a57600080fd5b506103d2600181565b34801561092f57600080fd5b5061048f61093e366004613f92565b612a31565b34801561094f57600080fd5b5061048f61095e366004613f92565b612a79565b34801561096f57600080fd5b5061048f61097e366004613ded565b612ac1565b34801561098f57600080fd5b506103d2612af9565b3480156109a457600080fd5b5061042a6109b3366004614047565b612b13565b3480156109c457600080fd5b506103d2600381565b3480156109d957600080fd5b5061042a612ccb565b3480156109ee57600080fd5b506103d26109fd366004613d63565b612d59565b348015610a0e57600080fd5b5061042a612d9d565b348015610a2357600080fd5b50610405610a32366004613d7e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6c57600080fd5b506103d2600f5481565b61048f610a84366004614047565b612dac565b348015610a9557600080fd5b506103d2600d5481565b348015610aab57600080fd5b506103d260125481565b348015610ac157600080fd5b5061048f610ad0366004613d63565b613230565b348015610ae157600080fd5b50600b5461040590600160a01b900460ff1681565b348015610b0257600080fd5b50610405610b11366004613d63565b6001600160a01b031660009081526013602052604090205460ff1690565b60006001600160e01b0319821663780e9d6360e01b1480610b545750610b54826132cb565b92915050565b606060008054610b69906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b95906144cb565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c918261147e565b9050806001600160a01b0316836001600160a01b03161415610cff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c61565b336001600160a01b0382161480610d1b5750610d1b8133610a32565b610d8d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c61565b610d97838361331b565b505050565b610da63382613389565b610dc25760405162461bcd60e51b8152600401610c6190614349565b610d97838383613480565b600a546001600160a01b03163314610df75760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d97576000838383818110610e1657610e16614577565b9050602002016020810190610e2b9190613d63565b6001600160a01b03161415610e525760405162461bcd60e51b8152600401610c6190614312565b600060156000858585818110610e6a57610e6a614577565b9050602002016020810190610e7f9190613d63565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eb181614506565b915050610dfa565b6000610ec483611c03565b8210610f265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c61565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f795760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d97576000838383818110610f9857610f98614577565b9050602002016020810190610fad9190613d63565b6001600160a01b03161415610fd45760405162461bcd60e51b8152600401610c6190614312565b600160176000858585818110610fec57610fec614577565b90506020020160208101906110019190613d63565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061104157611041614577565b90506020020160208101906110569190613d63565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116110835760006110d0565b6018600084848481811061109957611099614577565b90506020020160208101906110ae9190613d63565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806110db81614506565b915050610f7c565b600a546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610c61906142dd565b610d97600c8383613c9e565b600a546001600160a01b031633146111435760405162461bcd60e51b8152600401610c61906142dd565b6040514790339082156108fc029083906000818181858888f19350505050158015611172573d6000803e3d6000fd5b5050565b610d9783838360405180602001604052806000815250612ac1565b600061119c60085490565b82106111ff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c61565b6008828154811061121257611212614577565b90600052602060002001549050919050565b600a546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610c61906142dd565b610d97601a8383613c9e565b600a546001600160a01b031633146112845760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b031633146112cc5760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d975760008383838181106112eb576112eb614577565b90506020020160208101906113009190613d63565b6001600160a01b031614156113275760405162461bcd60e51b8152600401610c6190614312565b60016015600085858581811061133f5761133f614577565b90506020020160208101906113549190613d63565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560168185858581811061139457611394614577565b90506020020160208101906113a99190613d63565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116113d6576000611423565b601660008484848181106113ec576113ec614577565b90506020020160208101906114019190613d63565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061142e81614506565b9150506112cf565b600a546001600160a01b031633146114605760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160a81b0260ff60a81b19909216919091179055565b6000818152600260205260408120546001600160a01b031680610b545760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c61565b600a546001600160a01b0316331461151f5760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d9757600083838381811061153e5761153e614577565b90506020020160208101906115539190613d63565b6001600160a01b0316141561157a5760405162461bcd60e51b8152600401610c6190614312565b60016013600085858581811061159257611592614577565b90506020020160208101906115a79190613d63565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556014818585858181106115e7576115e7614577565b90506020020160208101906115fc9190613d63565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611629576000611676565b6014600084848481811061163f5761163f614577565b90506020020160208101906116549190613d63565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061168181614506565b915050611522565b600a546001600160a01b031633146116b35760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d975760008383838181106116d2576116d2614577565b90506020020160208101906116e79190613d63565b6001600160a01b0316141561170e5760405162461bcd60e51b8152600401610c6190614312565b60006017600085858581811061172657611726614577565b905060200201602081019061173b9190613d63565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061176d81614506565b9150506116b6565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156117b957600080fd5b505afa1580156117cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f19190614060565b905080156119da57600081116118195760405162461bcd60e51b8152600401610c6190614124565b600b54600160b81b900460ff166118425760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a01b900460ff1661186b5760405162461bcd60e51b8152600401610c61906141ad565b612710611878818061443d565b611882919061443d565b600854106118a25760405162461bcd60e51b8152600401610c61906143d1565b600d548211156118c45760405162461bcd60e51b8152600401610c6190614408565b612710826010546118d5919061443d565b11156118f35760405162461bcd60e51b8152600401610c6190614278565b600d543360009081526014602052604090205461191190849061443d565b111561192f5760405162461bcd60e51b8152600401610c619061439a565b3461194183662386f26fc10000614469565b111561195f5760405162461bcd60e51b8152600401610c619061420a565b60005b828110156119d8576000601054600161197b919061443d565b9050600160106000828254611990919061443d565b90915550503360009081526014602052604081208054600192906119b590849061443d565b909155506119c59050338261362b565b50806119d081614506565b915050611962565b505b8061117257600b54600160b81b900460ff16611a085760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a01b900460ff16611a315760405162461bcd60e51b8152600401610c61906141ad565b3360009081526013602052604090205460ff16611a605760405162461bcd60e51b8152600401610c6190614241565b612710611a6d818061443d565b611a77919061443d565b60085410611a975760405162461bcd60e51b8152600401610c61906143d1565b600e54821115611ab95760405162461bcd60e51b8152600401610c6190614408565b61271082601054611aca919061443d565b1115611ae85760405162461bcd60e51b8152600401610c6190614278565b600d5433600090815260146020526040902054611b0690849061443d565b1115611b245760405162461bcd60e51b8152600401610c619061439a565b34611b3683662386f26fc10000614469565b1115611b545760405162461bcd60e51b8152600401610c619061420a565b60005b82811015610d975760006010546001611b70919061443d565b9050600160106000828254611b85919061443d565b9091555050336000908152601460205260408120805460019290611baa90849061443d565b90915550611bba9050338261362b565b5080611bc581614506565b915050611b57565b600a546001600160a01b03163314611bf75760405162461bcd60e51b8152600401610c61906142dd565b610d97601b8383613c9e565b60006001600160a01b038216611c6e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c61565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cb45760405162461bcd60e51b8152600401610c61906142dd565b611cbe6000613645565b565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611d0457600080fd5b505afa158015611d18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3c9190614060565b9050801561201857600b54600160b81b900460ff16611d6d5760405162461bcd60e51b8152600401610c61906142ad565b612710611d7a818061443d565b611d84919061443d565b60085410611da45760405162461bcd60e51b8152600401610c61906143d1565b6003821115611dc55760405162461bcd60e51b8152600401610c6190614408565b336000908152601860209081526040808320546016835281842054601490935292205460039285929091611df9919061443d565b611e03919061443d565b611e0d919061443d565b1115611e2b5760405162461bcd60e51b8152600401610c619061439a565b34611e3d83662386f26fc10000614469565b1115611e5b5760405162461bcd60e51b8152600401610c619061420a565b60005b60018110156120165760006010546001611e78919061443d565b90506000601154612710611e8c919061443d565b611e9790600161443d565b9050600060125461271080611eac919061443d565b611eb6919061443d565b611ec190600161443d565b3360009081526018602090815260408083205460168352818420546014909352922054929350600392899291611ef69161443d565b611f00919061443d565b611f0a919061443d565b1115611f285760405162461bcd60e51b8152600401610c619061439a565b600160106000828254611f3b919061443d565b9091555050336000908152601460205260408120805460019290611f6090849061443d565b90915550611f709050338461362b565b600160116000828254611f83919061443d565b9091555050336000908152601660205260408120805460019290611fa890849061443d565b90915550611fb89050338361362b565b600160126000828254611fcb919061443d565b9091555050336000908152601860205260408120805460019290611ff090849061443d565b909155506120009050338261362b565b505050808061200e90614506565b915050611e5e565b505b8061117257600b54600160b81b900460ff166120465760405162461bcd60e51b8152600401610c61906142ad565b3360009081526013602052604090205460ff1661206257600080fd5b3360009081526015602052604090205460ff1661207e57600080fd5b3360009081526017602052604090205460ff1661209a57600080fd5b6127106120a7818061443d565b6120b1919061443d565b600854106120d15760405162461bcd60e51b8152600401610c61906143d1565b60038211156120f25760405162461bcd60e51b8152600401610c6190614408565b336000908152601860209081526040808320546016835281842054601490935292205460039285929091612126919061443d565b612130919061443d565b61213a919061443d565b11156121585760405162461bcd60e51b8152600401610c619061439a565b3461216a83662386f26fc10000614469565b11156121885760405162461bcd60e51b8152600401610c619061420a565b60005b6001811015610d9757600060105460016121a5919061443d565b905060006011546127106121b9919061443d565b6121c490600161443d565b90506000601254612710806121d9919061443d565b6121e3919061443d565b6121ee90600161443d565b33600090815260186020908152604080832054601683528184205460149093529220549293506003928992916122239161443d565b61222d919061443d565b612237919061443d565b11156122555760405162461bcd60e51b8152600401610c619061439a565b600160106000828254612268919061443d565b909155505033600090815260146020526040812080546001929061228d90849061443d565b9091555061229d9050338461362b565b6001601160008282546122b0919061443d565b90915550503360009081526016602052604081208054600192906122d590849061443d565b909155506122e59050338361362b565b6001601260008282546122f8919061443d565b909155505033600090815260186020526040812080546001929061231d90849061443d565b9091555061232d9050338261362b565b505050808061233b90614506565b91505061218b565b600a546001600160a01b0316331461236d5760405162461bcd60e51b8152600401610c61906142dd565b610d9760198383613c9e565b606060018054610b69906144cb565b600a546001600160a01b031633146123b25760405162461bcd60e51b8152600401610c61906142dd565b60005b81811015610d975760008383838181106123d1576123d1614577565b90506020020160208101906123e69190613d63565b6001600160a01b0316141561240d5760405162461bcd60e51b8152600401610c6190614312565b60006013600085858581811061242557612425614577565b905060200201602081019061243a9190613d63565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061246c81614506565b9150506123b5565b60006001600160a01b03821661249c5760405162461bcd60e51b8152600401610c61906141e4565b506001600160a01b031660009081526016602052604090205490565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156124fc57600080fd5b505afa158015612510573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125349190614060565b90508015612729576000811161255c5760405162461bcd60e51b8152600401610c6190614124565b600b54600160b81b900460ff166125855760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a81b900460ff166125ae5760405162461bcd60e51b8152600401610c61906141ad565b6127106125bb818061443d565b6125c5919061443d565b600854106125e55760405162461bcd60e51b8152600401610c61906143d1565b600e548211156126075760405162461bcd60e51b8152600401610c6190614408565b61271082601154612618919061443d565b11156126365760405162461bcd60e51b8152600401610c6190614278565b600e543360009081526016602052604090205461265490849061443d565b11156126725760405162461bcd60e51b8152600401610c619061439a565b3461268483662386f26fc10000614469565b11156126a25760405162461bcd60e51b8152600401610c619061420a565b60005b828110156127275760006011546127106126bf919061443d565b6126ca90600161443d565b90506001601160008282546126df919061443d565b909155505033600090815260166020526040812080546001929061270490849061443d565b909155506127149050338261362b565b508061271f81614506565b9150506126a5565b505b8061117257600b54600160b81b900460ff166127575760405162461bcd60e51b8152600401610c61906142ad565b600b54600160a81b900460ff166127805760405162461bcd60e51b8152600401610c61906141ad565b3360009081526015602052604090205460ff166127af5760405162461bcd60e51b8152600401610c6190614241565b6127106127bc818061443d565b6127c6919061443d565b600854106127e65760405162461bcd60e51b8152600401610c61906143d1565b600e548211156128085760405162461bcd60e51b8152600401610c6190614408565b61271082601154612819919061443d565b11156128375760405162461bcd60e51b8152600401610c6190614278565b600e543360009081526016602052604090205461285590849061443d565b11156128735760405162461bcd60e51b8152600401610c619061439a565b3461288583662386f26fc10000614469565b11156128a35760405162461bcd60e51b8152600401610c619061420a565b60005b82811015610d975760006011546127106128c0919061443d565b6128cb90600161443d565b90506001601160008282546128e0919061443d565b909155505033600090815260166020526040812080546001929061290590849061443d565b909155506129159050338261362b565b508061292081614506565b9150506128a6565b60006001600160a01b0382166129505760405162461bcd60e51b8152600401610c61906141e4565b506001600160a01b031660009081526018602052604090205490565b6001600160a01b0382163314156129c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c61565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314612a5b5760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160b81b0260ff60b81b19909216919091179055565b600a546001600160a01b03163314612aa35760405162461bcd60e51b8152600401610c61906142dd565b600b8054911515600160b01b0260ff60b01b19909216919091179055565b612acb3383613389565b612ae75760405162461bcd60e51b8152600401610c6190614349565b612af384848484613697565b50505050565b612710612b06818061443d565b612b10919061443d565b81565b6000818152600260205260409020546060906001600160a01b0316612b715760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610c61565b6000601b8054612b80906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612bac906144cb565b8015612bf95780601f10612bce57610100808354040283529160200191612bf9565b820191906000526020600020905b815481529060010190602001808311612bdc57829003601f168201915b505050505090506000815111612c9957601a8054612c16906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612c42906144cb565b8015612c8f5780601f10612c6457610100808354040283529160200191612c8f565b820191906000526020600020905b815481529060010190602001808311612c7257829003601f168201915b5050505050612cc4565b80612ca3846136ca565b604051602001612cb49291906140a5565b6040516020818303038152906040525b9392505050565b600c8054612cd8906144cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612d04906144cb565b8015612d515780601f10612d2657610100808354040283529160200191612d51565b820191906000526020600020905b815481529060010190602001808311612d3457829003601f168201915b505050505081565b60006001600160a01b038216612d815760405162461bcd60e51b8152600401610c61906141e4565b506001600160a01b031660009081526014602052604090205490565b606060198054610b69906144cb565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612df057600080fd5b505afa158015612e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e289190614060565b905080156130275760008111612e505760405162461bcd60e51b8152600401610c6190614124565b600b54600160b81b900460ff16612e795760405162461bcd60e51b8152600401610c61906142ad565b600b54600160b01b900460ff16612ea25760405162461bcd60e51b8152600401610c61906141ad565b612710612eaf818061443d565b612eb9919061443d565b60085410612ed95760405162461bcd60e51b8152600401610c61906143d1565b600f54821115612efb5760405162461bcd60e51b8152600401610c6190614408565b61271082601254612f0c919061443d565b1115612f2a5760405162461bcd60e51b8152600401610c6190614278565b600f5433600090815260186020526040902054612f4890849061443d565b1115612f665760405162461bcd60e51b8152600401610c619061439a565b34612f7883662386f26fc10000614469565b1115612f965760405162461bcd60e51b8152600401610c619061420a565b60005b8281101561302557601054600090612fb36127108061443d565b612fbd919061443d565b612fc890600161443d565b9050600160126000828254612fdd919061443d565b909155505033600090815260186020526040812080546001929061300290849061443d565b909155506130129050338261362b565b508061301d81614506565b915050612f99565b505b8061117257600b54600160b81b900460ff166130555760405162461bcd60e51b8152600401610c61906142ad565b600b54600160b01b900460ff1661307e5760405162461bcd60e51b8152600401610c61906141ad565b3360009081526017602052604090205460ff166130ad5760405162461bcd60e51b8152600401610c6190614241565b6127106130ba818061443d565b6130c4919061443d565b600854106130e45760405162461bcd60e51b8152600401610c61906143d1565b600f548211156131065760405162461bcd60e51b8152600401610c6190614408565b61271082601254613117919061443d565b11156131355760405162461bcd60e51b8152600401610c6190614278565b600f543360009081526018602052604090205461315390849061443d565b11156131715760405162461bcd60e51b8152600401610c619061439a565b3461318383662386f26fc10000614469565b11156131a15760405162461bcd60e51b8152600401610c619061420a565b60005b82811015610d97576012546000906131be6127108061443d565b6131c8919061443d565b6131d390600161443d565b90506001601260008282546131e8919061443d565b909155505033600090815260186020526040812080546001929061320d90849061443d565b9091555061321d9050338261362b565b508061322881614506565b9150506131a4565b600a546001600160a01b0316331461325a5760405162461bcd60e51b8152600401610c61906142dd565b6001600160a01b0381166132bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c61565b6132c881613645565b50565b60006001600160e01b031982166380ac58cd60e01b14806132fc57506001600160e01b03198216635b5e139f60e01b145b80610b5457506301ffc9a760e01b6001600160e01b0319831614610b54565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906133508261147e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166134025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c61565b600061340d8361147e565b9050806001600160a01b0316846001600160a01b031614806134485750836001600160a01b031661343d84610bec565b6001600160a01b0316145b8061347857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166134938261147e565b6001600160a01b0316146134fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c61565b6001600160a01b03821661355d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c61565b6135688383836137c8565b61357360008261331b565b6001600160a01b038316600090815260036020526040812080546001929061359c908490614488565b90915550506001600160a01b03821660009081526003602052604081208054600192906135ca90849061443d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611172828260405180602001604052806000815250613880565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6136a2848484613480565b6136ae848484846138b3565b612af35760405162461bcd60e51b8152600401610c619061415b565b6060816136ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613718578061370281614506565b91506137119050600a83614455565b91506136f2565b60008167ffffffffffffffff8111156137335761373361458d565b6040519080825280601f01601f19166020018201604052801561375d576020820181803683370190505b5090505b841561347857613772600183614488565b915061377f600a86614521565b61378a90603061443d565b60f81b81838151811061379f5761379f614577565b60200101906001600160f81b031916908160001a9053506137c1600a86614455565b9450613761565b6001600160a01b0383166138235761381e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613846565b816001600160a01b0316836001600160a01b0316146138465761384683826139c0565b6001600160a01b03821661385d57610d9781613a5d565b826001600160a01b0316826001600160a01b031614610d9757610d978282613b0c565b61388a8383613b50565b61389760008484846138b3565b610d975760405162461bcd60e51b8152600401610c619061415b565b60006001600160a01b0384163b156139b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906138f79033908990889088906004016140d4565b602060405180830381600087803b15801561391157600080fd5b505af1925050508015613941575060408051601f3d908101601f1916820190925261393e91810190613fca565b60015b61399b573d80801561396f576040519150601f19603f3d011682016040523d82523d6000602084013e613974565b606091505b5080516139935760405162461bcd60e51b8152600401610c619061415b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613478565b506001949350505050565b600060016139cd84611c03565b6139d79190614488565b600083815260076020526040902054909150808214613a2a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613a6f90600190614488565b60008381526009602052604081205460088054939450909284908110613a9757613a97614577565b906000526020600020015490508060088381548110613ab857613ab8614577565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613af057613af0614561565b6001900381819060005260206000200160009055905550505050565b6000613b1783611c03565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216613ba65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c61565b6000818152600260205260409020546001600160a01b031615613c0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c61565b613c17600083836137c8565b6001600160a01b0382166000908152600360205260408120805460019290613c4090849061443d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613caa906144cb565b90600052602060002090601f016020900481019282613ccc5760008555613d12565b82601f10613ce55782800160ff19823516178555613d12565b82800160010185558215613d12579182015b82811115613d12578235825591602001919060010190613cf7565b50613d1e929150613d22565b5090565b5b80821115613d1e5760008155600101613d23565b80356001600160a01b0381168114613d4e57600080fd5b919050565b80358015158114613d4e57600080fd5b600060208284031215613d7557600080fd5b612cc482613d37565b60008060408385031215613d9157600080fd5b613d9a83613d37565b9150613da860208401613d37565b90509250929050565b600080600060608486031215613dc657600080fd5b613dcf84613d37565b9250613ddd60208501613d37565b9150604084013590509250925092565b60008060008060808587031215613e0357600080fd5b613e0c85613d37565b9350613e1a60208601613d37565b925060408501359150606085013567ffffffffffffffff80821115613e3e57600080fd5b818701915087601f830112613e5257600080fd5b813581811115613e6457613e6461458d565b604051601f8201601f19908116603f01168101908382118183101715613e8c57613e8c61458d565b816040528281528a6020848701011115613ea557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215613edc57600080fd5b613ee583613d37565b9150613da860208401613d53565b60008060408385031215613f0657600080fd5b613f0f83613d37565b946020939093013593505050565b60008060208385031215613f3057600080fd5b823567ffffffffffffffff80821115613f4857600080fd5b818501915085601f830112613f5c57600080fd5b813581811115613f6b57600080fd5b8660208260051b8501011115613f8057600080fd5b60209290920196919550909350505050565b600060208284031215613fa457600080fd5b612cc482613d53565b600060208284031215613fbf57600080fd5b8135612cc4816145a3565b600060208284031215613fdc57600080fd5b8151612cc4816145a3565b60008060208385031215613ffa57600080fd5b823567ffffffffffffffff8082111561401257600080fd5b818501915085601f83011261402657600080fd5b81358181111561403557600080fd5b866020828501011115613f8057600080fd5b60006020828403121561405957600080fd5b5035919050565b60006020828403121561407257600080fd5b5051919050565b6000815180845261409181602086016020860161449f565b601f01601f19169290920160200192915050565b600083516140b781846020880161449f565b8351908301906140cb81836020880161449f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061410790830184614079565b9695505050505050565b602081526000612cc46020830184614079565b6020808252601c908201527f4d75737420686f6c64206174206c6561737420426c616e6b4661636500000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f436f6c6c656374696f6e206973206e6f74206163746976650000000000000000604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252601b908201527f4d757374206265206f6e204861796c6f732057686974656c6973740000000000604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6000821982111561445057614450614535565b500190565b6000826144645761446461454b565b500490565b600081600019048311821515161561448357614483614535565b500290565b60008282101561449a5761449a614535565b500390565b60005b838110156144ba5781810151838201526020016144a2565b83811115612af35750506000910152565b600181811c908216806144df57607f821691505b6020821081141561450057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561451a5761451a614535565b5060010190565b6000826145305761453061454b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146132c857600080fdfea2646970667358221220088568d4a6e2414908455c2680a5059e53403e6d0bc2886325281f7c5ffd2d5b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000006f8b41b72c04b2bba587fc7b09dbfb877ca7d04000000000000000000000000000000000000000000000000000000000000000f426c616e6b466163654861796c6f73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034246480000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): BlankFaceHaylos
Arg [1] : symbol (string): BFH
Arg [2] : dependentContractAddress (address): 0x06f8b41b72c04b2BbA587Fc7b09dbfb877cA7d04

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000006f8b41b72c04b2bba587fc7b09dbfb877ca7d04
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 426c616e6b466163654861796c6f730000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4246480000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

500:15610:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1277:37;;;;;;;;;;;;;;;;;;;18132:25:15;;;18120:2;18105:18;1277:37:1;;;;;;;;937:224:5;;;;;;;;;;-1:-1:-1;937:224:5;;;;;:::i;:::-;;:::i;:::-;;;6690:14:15;;6683:22;6665:41;;6653:2;6638:18;937:224:5;6525:187:15;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5988:32:15;;;5970:51;;5958:2;5943:18;3985:221:4;5824:203:15;3508:411:4;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;:::-;;1577:113:5;;;;;;;;;;-1:-1:-1;1665:10:5;:17;1577:113;;4875:339:4;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;3676:273:1:-;;;;;;;;;;-1:-1:-1;3676:273:1;;;;;:::i;:::-;;:::i;1245:256:5:-;;;;;;;;;;-1:-1:-1;1245:256:5;;;;;:::i;:::-;;:::i;4160:353:1:-;;;;;;;;;;-1:-1:-1;4160:353:1;;;;;:::i;:::-;;:::i;14935:115::-;;;;;;;;;;-1:-1:-1;14935:115:1;;;;;:::i;:::-;;:::i;15058:144::-;;;;;;;;;;;;;:::i;5285:185:4:-;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;1767:233:5:-;;;;;;;;;;-1:-1:-1;1767:233:5;;;;;:::i;:::-;;:::i;1438:37:1:-;;;;;;;;;;;;;;;;15318:101;;;;;;;;;;-1:-1:-1;15318:101:1;;;;;:::i;:::-;;:::i;14502:137::-;;;;;;;;;;-1:-1:-1;14502:137:1;;;;;:::i;:::-;;:::i;700:47::-;;;;;;;;;;;;742:5;700:47;;1076:39;;;;;;;;;;-1:-1:-1;1076:39:1;;;;-1:-1:-1;;;1076:39:1;;;;;;1480:37;;;;;;;;;;;;;;;;3194:353;;;;;;;;;;-1:-1:-1;3194:353:1;;;;;:::i;:::-;;:::i;14647:137::-;;;;;;;;;;-1:-1:-1;14647:137:1;;;;;:::i;:::-;;:::i;2120:239:4:-;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;2228:353:1:-;;;;;;;;;;-1:-1:-1;2228:353:1;;;;;:::i;:::-;;:::i;4642:273::-;;;;;;;;;;-1:-1:-1;4642:273:1;;;;;:::i;:::-;;:::i;1120:39::-;;;;;;;;;;-1:-1:-1;1120:39:1;;;;-1:-1:-1;;;1120:39:1;;;;;;5111:2041;;;;;;:::i;:::-;;:::i;15425:141::-;;;;;;;;;;-1:-1:-1;15425:141:1;;;;;:::i;:::-;;:::i;1850:208:4:-;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;1650:94:13:-;;;;;;;;;;;;;:::i;3555:113:1:-;;;;;;;;;;-1:-1:-1;3555:113:1;;;;;:::i;:::-;-1:-1:-1;;;;;3644:18:1;3624:4;3644:18;;;:12;:18;;;;;;;;;3555:113;4521;;;;;;;;;;-1:-1:-1;4521:113:1;;;;;:::i;:::-;-1:-1:-1;;;;;4610:18:1;4590:4;4610:18;;;:12;:18;;;;;;;;;4521:113;11365:2995;;;;;;:::i;:::-;;:::i;941:42::-;;;;;;;;;;;;973:10;941:42;;999:87:13;;;;;;;;;;-1:-1:-1;1072:6:13;;-1:-1:-1;;;;;1072:6:13;999:87;;1164:34:1;;;;;;;;;;-1:-1:-1;1164:34:1;;;;-1:-1:-1;;;1164:34:1;;;;;;15208:104;;;;;;;;;;-1:-1:-1;15208:104:1;;;;;:::i;:::-;;:::i;2595::4:-;;;;;;;;;;;;;:::i;2710:273:1:-;;;;;;;;;;-1:-1:-1;2710:273:1;;;;;:::i;:::-;;:::i;3957:182::-;;;;;;;;;;-1:-1:-1;3957:182:1;;;;;:::i;:::-;;:::i;7159:2077::-;;;;;;:::i;:::-;;:::i;4923:182::-;;;;;;;;;;-1:-1:-1;4923:182:1;;;;;:::i;:::-;;:::i;4278:295:4:-;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;988:37:1:-;;;;;;;;;;;;1024:1;988:37;;14373:117;;;;;;;;;;-1:-1:-1;14373:117:1;;;;;:::i;:::-;;:::i;14792:137::-;;;;;;;;;;-1:-1:-1;14792:137:1;;;;;:::i;:::-;;:::i;5541:328:4:-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;804:85:1:-;;;;;;;;;;;;;:::i;15678:429::-;;;;;;;;;;-1:-1:-1;15678:429:1;;;;;:::i;:::-;;:::i;894:42::-;;;;;;;;;;;;935:1;894:42;;1207:21;;;;;;;;;;;;;:::i;2991:182::-;;;;;;;;;;-1:-1:-1;2991:182:1;;;;;:::i;:::-;;:::i;15572:100::-;;;;;;;;;;;;;:::i;4644:164:4:-;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;1319:37:1;;;;;;;;;;;;;;;;9244:2113;;;;;;:::i;:::-;;:::i;1235:37::-;;;;;;;;;;;;;;;;1522;;;;;;;;;;;;;;;;1899:192:13;;;;;;;;;;-1:-1:-1;1899:192:13;;;;;:::i;:::-;;:::i;1032:39:1:-;;;;;;;;;;-1:-1:-1;1032:39:1;;;;-1:-1:-1;;;1032:39:1;;;;;;2589:113;;;;;;;;;;-1:-1:-1;2589:113:1;;;;;:::i;:::-;-1:-1:-1;;;;;2678:18:1;2658:4;2678:18;;;:12;:18;;;;;;;;;2589:113;937:224:5;1039:4;-1:-1:-1;;;;;;1063:50:5;;-1:-1:-1;;;1063:50:5;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:5:o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;4081:73;;;;-1:-1:-1;;;4081:73:4;;14342:2:15;4081:73:4;;;14324:21:15;14381:2;14361:18;;;14354:30;14420:34;14400:18;;;14393:62;-1:-1:-1;;;14471:18:15;;;14464:42;14523:19;;4081:73:4;;;;;;;;;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;15881:2:15;3639:57:4;;;15863:21:15;15920:2;15900:18;;;15893:30;15959:34;15939:18;;;15932:62;-1:-1:-1;;;16010:18:15;;;16003:31;16051:19;;3639:57:4;15679:397:15;3639:57:4;681:10:2;-1:-1:-1;;;;;3731:21:4;;;;:62;;-1:-1:-1;3756:37:4;3773:5;681:10:2;4644:164:4;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;11667:2:15;3709:168:4;;;11649:21:15;11706:2;11686:18;;;11679:30;11745:34;11725:18;;;11718:62;11816:26;11796:18;;;11789:54;11860:19;;3709:168:4;11465:420:15;3709:168:4;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;4875:339::-;5070:41;681:10:2;5103:7:4;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;3676:273:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;3777:9:1::1;3772:172;3792:20:::0;;::::1;3772:172;;;3860:1;3836:9:::0;;3846:1;3836:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3836:26:1::1;;;3828:65;;;;-1:-1:-1::0;;;3828:65:1::1;;;;;;;:::i;:::-;3931:5;3902:12;:26;3915:9;;3925:1;3915:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3902:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3902:26:1;:34;;-1:-1:-1;;3902:34:1::1;::::0;::::1;;::::0;;;::::1;::::0;;3814:3;::::1;::::0;::::1;:::i;:::-;;;;3772:172;;1245:256:5::0;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:5;;7500:2:15;1362:87:5;;;7482:21:15;7539:2;7519:18;;;7512:30;7578:34;7558:18;;;7551:62;-1:-1:-1;;;7629:18:15;;;7622:41;7680:19;;1362:87:5;7298:407:15;1362:87:5;-1:-1:-1;;;;;;1467:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;4160:353:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4256:9:1::1;4251:257;4271:20:::0;;::::1;4251:257;;;4339:1;4315:9:::0;;4325:1;4315:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4315:26:1::1;;;4307:65;;;;-1:-1:-1::0;;;4307:65:1::1;;;;;;;:::i;:::-;4410:4;4381:12;:26;4394:9;;4404:1;4394:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4381:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4381:26:1;;;:33;;-1:-1:-1;;4381:33:1::1;::::0;::::1;;::::0;;;::::1;::::0;;;4423:19:::1;-1:-1:-1::0;4443:9:1;;4453:1;4443:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4423:33:1::1;-1:-1:-1::0;;;;;4423:33:1::1;;;;;;;;;;;;;:37;:77;;4499:1;4423:77;;;4463:19;:33;4483:9;;4493:1;4483:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4463:33:1::1;-1:-1:-1::0;;;;;4463:33:1::1;;;;;;;;;;;;;4423:77;-1:-1:-1::0;4293:3:1;::::1;::::0;::::1;:::i;:::-;;;;4251:257;;14935:115:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;15021:23:1::1;:7;15031:13:::0;;15021:23:::1;:::i;15058:144::-:0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;15159:37:1::1;::::0;15131:21:::1;::::0;15167:10:::1;::::0;15159:37;::::1;;;::::0;15131:21;;15113:15:::1;15159:37:::0;15113:15;15159:37;15131:21;15167:10;15159:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;15106:96;15058:144::o:0;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;1767:233:5:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:5;;16701:2:15;1862:95:5;;;16683:21:15;16740:2;16720:18;;;16713:30;16779:34;16759:18;;;16752:62;-1:-1:-1;;;16830:18:15;;;16823:42;16882:19;;1862:95:5;16499:408:15;1862:95:5;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;15318:101:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;15394:19:1::1;:13;15410:3:::0;;15394:19:::1;:::i;14502:137::-:0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;14591:19:1::1;:42:::0;;;::::1;;-1:-1:-1::0;;;14591:42:1::1;-1:-1:-1::0;;;;14591:42:1;;::::1;::::0;;;::::1;::::0;;14502:137::o;3194:353::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;3290:9:1::1;3285:257;3305:20:::0;;::::1;3285:257;;;3373:1;3349:9:::0;;3359:1;3349:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3349:26:1::1;;;3341:65;;;;-1:-1:-1::0;;;3341:65:1::1;;;;;;;:::i;:::-;3444:4;3415:12;:26;3428:9;;3438:1;3428:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3415:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3415:26:1;;;:33;;-1:-1:-1;;3415:33:1::1;::::0;::::1;;::::0;;;::::1;::::0;;;3457:19:::1;-1:-1:-1::0;3477:9:1;;3487:1;3477:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3457:33:1::1;-1:-1:-1::0;;;;;3457:33:1::1;;;;;;;;;;;;;:37;:77;;3533:1;3457:77;;;3497:19;:33;3517:9;;3527:1;3517:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3497:33:1::1;-1:-1:-1::0;;;;;3497:33:1::1;;;;;;;;;;;;;3457:77;-1:-1:-1::0;3327:3:1;::::1;::::0;::::1;:::i;:::-;;;;3285:257;;14647:137:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;14736:19:1::1;:42:::0;;;::::1;;-1:-1:-1::0;;;14736:42:1::1;-1:-1:-1::0;;;;14736:42:1;;::::1;::::0;;;::::1;::::0;;14647:137::o;2120:239:4:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;12503:2:15;2255:73:4;;;12485:21:15;12542:2;12522:18;;;12515:30;12581:34;12561:18;;;12554:62;-1:-1:-1;;;12632:18:15;;;12625:39;12681:19;;2255:73:4;12301:405:15;2228:353:1;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;2324:9:1::1;2319:257;2339:20:::0;;::::1;2319:257;;;2407:1;2383:9:::0;;2393:1;2383:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2383:26:1::1;;;2375:65;;;;-1:-1:-1::0;;;2375:65:1::1;;;;;;;:::i;:::-;2478:4;2449:12;:26;2462:9;;2472:1;2462:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2449:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2449:26:1;;;:33;;-1:-1:-1;;2449:33:1::1;::::0;::::1;;::::0;;;::::1;::::0;;;2491:19:::1;-1:-1:-1::0;2511:9:1;;2521:1;2511:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2491:33:1::1;-1:-1:-1::0;;;;;2491:33:1::1;;;;;;;;;;;;;:37;:77;;2567:1;2491:77;;;2531:19;:33;2551:9;;2561:1;2551:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2531:33:1::1;-1:-1:-1::0;;;;;2531:33:1::1;;;;;;;;;;;;;2491:77;-1:-1:-1::0;2361:3:1;::::1;::::0;::::1;:::i;:::-;;;;2319:257;;4642:273:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4743:9:1::1;4738:172;4758:20:::0;;::::1;4738:172;;;4826:1;4802:9:::0;;4812:1;4802:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4802:26:1::1;;;4794:65;;;;-1:-1:-1::0;;;4794:65:1::1;;;;;;;:::i;:::-;4897:5;4868:12;:26;4881:9;;4891:1;4881:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4868:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4868:26:1;:34;;-1:-1:-1;;4868:34:1::1;::::0;::::1;;::::0;;;::::1;::::0;;4780:3;::::1;::::0;::::1;:::i;:::-;;;;4738:172;;5111:2041:::0;5216:9;;:31;;-1:-1:-1;;;5216:31:1;;5236:10;5216:31;;;5970:51:15;5201:12:1;;-1:-1:-1;;;;;5216:9:1;;:19;;5943:18:15;;5216:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5201:46;-1:-1:-1;5264:9:1;;5260:938;;5306:1;5296:7;:11;5288:52;;;;-1:-1:-1;;;5288:52:1;;;;;;;:::i;:::-;5373:14;;-1:-1:-1;;;5373:14:1;;;;5365:49;;;;-1:-1:-1;;;5365:49:1;;;;;;;:::i;:::-;5429:19;;-1:-1:-1;;;5429:19:1;;;;5421:56;;;;-1:-1:-1;;;5421:56:1;;;;;;;:::i;:::-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;5492:23:1;5484:63;;;;-1:-1:-1;;;5484:63:1;;;;;;;:::i;:::-;5580:18;;5562:14;:36;;5554:81;;;;-1:-1:-1;;;5554:81:1;;;;;;;:::i;:::-;690:5;5675:14;5650:22;;:39;;;;:::i;:::-;:58;;5642:103;;;;-1:-1:-1;;;5642:103:1;;;;;;;:::i;:::-;5812:18;;5780:10;5760:31;;;;:19;:31;;;;;;:48;;5794:14;;5760:48;:::i;:::-;:70;;5752:111;;;;-1:-1:-1;;;5752:111:1;;;;;;;:::i;:::-;5904:9;5878:22;5886:14;973:10;5878:22;:::i;:::-;:35;;5870:76;;;;-1:-1:-1;;;5870:76:1;;;;;;;:::i;:::-;5960:9;5955:230;5979:14;5975:1;:18;5955:230;;;6011:15;6029:22;;6054:1;6029:26;;;;:::i;:::-;6011:44;;6092:1;6066:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;6122:10:1;6102:31;;;;:19;:31;;;;;:36;;6137:1;;6102:31;:36;;6137:1;;6102:36;:::i;:::-;;;;-1:-1:-1;6147:30:1;;-1:-1:-1;6157:10:1;6169:7;6147:9;:30::i;:::-;-1:-1:-1;5995:3:1;;;;:::i;:::-;;;;5955:230;;;;5260:938;6214:12;6210:931;;6245:14;;-1:-1:-1;;;6245:14:1;;;;6237:49;;;;-1:-1:-1;;;6237:49:1;;;;;;;:::i;:::-;6301:19;;-1:-1:-1;;;6301:19:1;;;;6293:56;;;;-1:-1:-1;;;6293:56:1;;;;;;;:::i;:::-;6377:10;6364:24;;;;:12;:24;;;;;;;;6356:64;;;;-1:-1:-1;;;6356:64:1;;;;;;;:::i;:::-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;6435:23:1;6427:63;;;;-1:-1:-1;;;6427:63:1;;;;;;;:::i;:::-;6523:18;;6505:14;:36;;6497:81;;;;-1:-1:-1;;;6497:81:1;;;;;;;:::i;:::-;690:5;6618:14;6593:22;;:39;;;;:::i;:::-;:58;;6585:103;;;;-1:-1:-1;;;6585:103:1;;;;;;;:::i;:::-;6755:18;;6723:10;6703:31;;;;:19;:31;;;;;;:48;;6737:14;;6703:48;:::i;:::-;:70;;6695:111;;;;-1:-1:-1;;;6695:111:1;;;;;;;:::i;:::-;6847:9;6821:22;6829:14;973:10;6821:22;:::i;:::-;:35;;6813:76;;;;-1:-1:-1;;;6813:76:1;;;;;;;:::i;:::-;6903:9;6898:230;6922:14;6918:1;:18;6898:230;;;6954:15;6972:22;;6997:1;6972:26;;;;:::i;:::-;6954:44;;7035:1;7009:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;7065:10:1;7045:31;;;;:19;:31;;;;;:36;;7080:1;;7045:31;:36;;7080:1;;7045:36;:::i;:::-;;;;-1:-1:-1;7090:30:1;;-1:-1:-1;7100:10:1;7112:7;7090:9;:30::i;:::-;-1:-1:-1;6938:3:1;;;;:::i;:::-;;;;6898:230;;15425:141;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;15521:39:1::1;:21;15545:15:::0;;15521:39:::1;:::i;1850:208:4:-:0;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;12092:2:15;1942:74:4;;;12074:21:15;12131:2;12111:18;;;12104:30;12170:34;12150:18;;;12143:62;-1:-1:-1;;;12221:18:15;;;12214:40;12271:19;;1942:74:4;11890:406:15;1942:74:4;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;1650:94:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:2;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;11365:2995:1:-;11454:9;;:31;;-1:-1:-1;;;11454:31:1;;11474:10;11454:31;;;5970:51:15;11439:12:1;;-1:-1:-1;;;;;11454:9:1;;:19;;5943:18:15;;11454:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11439:46;-1:-1:-1;11502:9:1;;11498:1354;;11532:14;;-1:-1:-1;;;11532:14:1;;;;11524:49;;;;-1:-1:-1;;;11524:49:1;;;;;;;:::i;:::-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;11588:23:1;11580:63;;;;-1:-1:-1;;;11580:63:1;;;;;;;:::i;:::-;935:1;11658:14;:32;;11650:77;;;;-1:-1:-1;;;11650:77:1;;;;;;;:::i;:::-;11830:10;11810:31;;;;:19;:31;;;;;;;;;11776:19;:31;;;;;;11742:19;:31;;;;;;935:1;;11844:14;;11810:31;;11742:65;;11776:31;11742:65;:::i;:::-;:99;;;;:::i;:::-;:116;;;;:::i;:::-;:134;;11734:175;;;;-1:-1:-1;;;11734:175:1;;;;;;;:::i;:::-;11950:9;11924:22;11932:14;973:10;11924:22;:::i;:::-;:35;;11916:76;;;;-1:-1:-1;;;11916:76:1;;;;;;;:::i;:::-;12006:9;12001:838;1024:1;12021;:13;12001:838;;;12052:16;12071:22;;12096:1;12071:26;;;;:::i;:::-;12052:45;;12106:16;12143:22;;690:5;12125:40;;;;:::i;:::-;:44;;12168:1;12125:44;:::i;:::-;12106:63;;12178:16;12233:22;;742:5;690;12197:33;;;;:::i;:::-;:58;;;;:::i;:::-;:62;;12258:1;12197:62;:::i;:::-;12362:10;12342:31;;;;:19;:31;;;;;;;;;12308:19;:31;;;;;;12274:19;:31;;;;;;12178:81;;-1:-1:-1;935:1:1;;12376:14;;12342:31;12274:65;;;:::i;:::-;:99;;;;:::i;:::-;:116;;;;:::i;:::-;:134;;12266:175;;;;-1:-1:-1;;;12266:175:1;;;;;;;:::i;:::-;12478:1;12452:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;12508:10:1;12488:31;;;;:19;:31;;;;;:36;;12523:1;;12488:31;:36;;12523:1;;12488:36;:::i;:::-;;;;-1:-1:-1;12533:31:1;;-1:-1:-1;12543:10:1;12555:8;12533:9;:31::i;:::-;12607:1;12581:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;12637:10:1;12617:31;;;;:19;:31;;;;;:36;;12652:1;;12617:31;:36;;12652:1;;12617:36;:::i;:::-;;;;-1:-1:-1;12663:31:1;;-1:-1:-1;12673:10:1;12685:8;12663:9;:31::i;:::-;12737:1;12711:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;12767:10:1;12747:31;;;;:19;:31;;;;;:36;;12782:1;;12747:31;:36;;12782:1;;12747:36;:::i;:::-;;;;-1:-1:-1;12798:31:1;;-1:-1:-1;12808:10:1;12820:8;12798:9;:31::i;:::-;12041:798;;;12036:3;;;;;:::i;:::-;;;;12001:838;;;;11498:1354;12868:12;12864:1487;;12899:14;;-1:-1:-1;;;12899:14:1;;;;12891:49;;;;-1:-1:-1;;;12891:49:1;;;;;;;:::i;:::-;12968:10;12955:24;;;;:12;:24;;;;;;;;12947:33;;;;;;13008:10;12995:24;;;;:12;:24;;;;;;;;12987:33;;;;;;13048:10;13035:24;;;;:12;:24;;;;;;;;13027:33;;;;;;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;13075:23:1;13067:63;;;;-1:-1:-1;;;13067:63:1;;;;;;;:::i;:::-;935:1;13145:14;:32;;13137:77;;;;-1:-1:-1;;;13137:77:1;;;;;;;:::i;:::-;13317:10;13297:31;;;;:19;:31;;;;;;;;;13263:19;:31;;;;;;13229:19;:31;;;;;;935:1;;13331:14;;13297:31;;13229:65;;13263:31;13229:65;:::i;:::-;:99;;;;:::i;:::-;:116;;;;:::i;:::-;:134;;13221:175;;;;-1:-1:-1;;;13221:175:1;;;;;;;:::i;:::-;13437:9;13411:22;13419:14;973:10;13411:22;:::i;:::-;:35;;13403:76;;;;-1:-1:-1;;;13403:76:1;;;;;;;:::i;:::-;13493:9;13488:838;1024:1;13508;:13;13488:838;;;13539:16;13558:22;;13583:1;13558:26;;;;:::i;:::-;13539:45;;13593:16;13630:22;;690:5;13612:40;;;;:::i;:::-;:44;;13655:1;13612:44;:::i;:::-;13593:63;;13665:16;13720:22;;742:5;690;13684:33;;;;:::i;:::-;:58;;;;:::i;:::-;:62;;13745:1;13684:62;:::i;:::-;13849:10;13829:31;;;;:19;:31;;;;;;;;;13795:19;:31;;;;;;13761:19;:31;;;;;;13665:81;;-1:-1:-1;935:1:1;;13863:14;;13829:31;13761:65;;;:::i;:::-;:99;;;;:::i;:::-;:116;;;;:::i;:::-;:134;;13753:175;;;;-1:-1:-1;;;13753:175:1;;;;;;;:::i;:::-;13965:1;13939:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;13995:10:1;13975:31;;;;:19;:31;;;;;:36;;14010:1;;13975:31;:36;;14010:1;;13975:36;:::i;:::-;;;;-1:-1:-1;14020:31:1;;-1:-1:-1;14030:10:1;14042:8;14020:9;:31::i;:::-;14094:1;14068:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;14124:10:1;14104:31;;;;:19;:31;;;;;:36;;14139:1;;14104:31;:36;;14139:1;;14104:36;:::i;:::-;;;;-1:-1:-1;14150:31:1;;-1:-1:-1;14160:10:1;14172:8;14150:9;:31::i;:::-;14224:1;14198:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;14254:10:1;14234:31;;;;:19;:31;;;;;:36;;14269:1;;14234:31;:36;;14269:1;;14234:36;:::i;:::-;;;;-1:-1:-1;14285:31:1;;-1:-1:-1;14295:10:1;14307:8;14285:9;:31::i;:::-;13528:798;;;13523:3;;;;;:::i;:::-;;;;13488:838;;15208:104;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;15288:18:1::1;:12;15303:3:::0;;15288:18:::1;:::i;2595:104:4:-:0;2651:13;2684:7;2677:14;;;;;:::i;2710:273:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;2811:9:1::1;2806:172;2826:20:::0;;::::1;2806:172;;;2894:1;2870:9:::0;;2880:1;2870:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2870:26:1::1;;;2862:65;;;;-1:-1:-1::0;;;2862:65:1::1;;;;;;;:::i;:::-;2965:5;2936:12;:26;2949:9;;2959:1;2949:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2936:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2936:26:1;:34;;-1:-1:-1;;2936:34:1::1;::::0;::::1;;::::0;;;::::1;::::0;;2848:3;::::1;::::0;::::1;:::i;:::-;;;;2806:172;;3957:182:::0;4034:7;-1:-1:-1;;;;;4057:19:1;;4049:44;;;;-1:-1:-1;;;4049:44:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4107:26:1;;;;;:19;:26;;;;;;;3957:182::o;7159:2077::-;7264:9;;:31;;-1:-1:-1;;;7264:31:1;;7284:10;7264:31;;;5970:51:15;7249:12:1;;-1:-1:-1;;;;;7264:9:1;;:19;;5943:18:15;;7264:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7249:46;-1:-1:-1;7312:9:1;;7308:956;;7354:1;7344:7;:11;7336:52;;;;-1:-1:-1;;;7336:52:1;;;;;;;:::i;:::-;7421:14;;-1:-1:-1;;;7421:14:1;;;;7413:49;;;;-1:-1:-1;;;7413:49:1;;;;;;;:::i;:::-;7477:19;;-1:-1:-1;;;7477:19:1;;;;7469:56;;;;-1:-1:-1;;;7469:56:1;;;;;;;:::i;:::-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;7540:23:1;7532:63;;;;-1:-1:-1;;;7532:63:1;;;;;;;:::i;:::-;7628:18;;7610:14;:36;;7602:81;;;;-1:-1:-1;;;7602:81:1;;;;;;;:::i;:::-;742:5;7723:14;7698:22;;:39;;;;:::i;:::-;:58;;7690:103;;;;-1:-1:-1;;;7690:103:1;;;;;;;:::i;:::-;7860:18;;7828:10;7808:31;;;;:19;:31;;;;;;:48;;7842:14;;7808:48;:::i;:::-;:70;;7800:111;;;;-1:-1:-1;;;7800:111:1;;;;;;;:::i;:::-;7952:9;7926:22;7934:14;973:10;7926:22;:::i;:::-;:35;;7918:76;;;;-1:-1:-1;;;7918:76:1;;;;;;;:::i;:::-;8008:9;8003:248;8027:14;8023:1;:18;8003:248;;;8059:15;8095:22;;690:5;8077:40;;;;:::i;:::-;:44;;8120:1;8077:44;:::i;:::-;8059:62;;8158:1;8132:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;8188:10:1;8168:31;;;;:19;:31;;;;;:36;;8203:1;;8168:31;:36;;8203:1;;8168:36;:::i;:::-;;;;-1:-1:-1;8213:30:1;;-1:-1:-1;8223:10:1;8235:7;8213:9;:30::i;:::-;-1:-1:-1;8043:3:1;;;;:::i;:::-;;;;8003:248;;;;7308:956;8280:12;8276:949;;8311:14;;-1:-1:-1;;;8311:14:1;;;;8303:49;;;;-1:-1:-1;;;8303:49:1;;;;;;;:::i;:::-;8367:19;;-1:-1:-1;;;8367:19:1;;;;8359:56;;;;-1:-1:-1;;;8359:56:1;;;;;;;:::i;:::-;8443:10;8430:24;;;;:12;:24;;;;;;;;8422:64;;;;-1:-1:-1;;;8422:64:1;;;;;;;:::i;:::-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;8501:23:1;8493:63;;;;-1:-1:-1;;;8493:63:1;;;;;;;:::i;:::-;8589:18;;8571:14;:36;;8563:81;;;;-1:-1:-1;;;8563:81:1;;;;;;;:::i;:::-;742:5;8684:14;8659:22;;:39;;;;:::i;:::-;:58;;8651:103;;;;-1:-1:-1;;;8651:103:1;;;;;;;:::i;:::-;8821:18;;8789:10;8769:31;;;;:19;:31;;;;;;:48;;8803:14;;8769:48;:::i;:::-;:70;;8761:111;;;;-1:-1:-1;;;8761:111:1;;;;;;;:::i;:::-;8913:9;8887:22;8895:14;973:10;8887:22;:::i;:::-;:35;;8879:76;;;;-1:-1:-1;;;8879:76:1;;;;;;;:::i;:::-;8969:9;8964:248;8988:14;8984:1;:18;8964:248;;;9020:15;9056:22;;690:5;9038:40;;;;:::i;:::-;:44;;9081:1;9038:44;:::i;:::-;9020:62;;9119:1;9093:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;9149:10:1;9129:31;;;;:19;:31;;;;;:36;;9164:1;;9129:31;:36;;9164:1;;9129:36;:::i;:::-;;;;-1:-1:-1;9174:30:1;;-1:-1:-1;9184:10:1;9196:7;9174:9;:30::i;:::-;-1:-1:-1;9004:3:1;;;;:::i;:::-;;;;8964:248;;4923:182;5000:7;-1:-1:-1;;;;;5023:19:1;;5015:44;;;;-1:-1:-1;;;5015:44:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;;5073:26:1;;;;;:19;:26;;;;;;;4923:182::o;4278:295:4:-;-1:-1:-1;;;;;4381:24:4;;681:10:2;4381:24:4;;4373:62;;;;-1:-1:-1;;;4373:62:4;;9500:2:15;4373:62:4;;;9482:21:15;9539:2;9519:18;;;9512:30;9578:27;9558:18;;;9551:55;9623:18;;4373:62:4;9298:349:15;4373:62:4;681:10:2;4448:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;4517:48;;6665:41:15;;;4448:42:4;;681:10:2;4517:48:4;;6638:18:15;4517:48:4;;;;;;;4278:295;;:::o;14373:117:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;14452:14:1::1;:32:::0;;;::::1;;-1:-1:-1::0;;;14452:32:1::1;-1:-1:-1::0;;;;14452:32:1;;::::1;::::0;;;::::1;::::0;;14373:117::o;14792:137::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;14881:19:1::1;:42:::0;;;::::1;;-1:-1:-1::0;;;14881:42:1::1;-1:-1:-1::0;;;;14881:42:1;;::::1;::::0;;;::::1;::::0;;14792:137::o;5541:328:4:-;5716:41;681:10:2;5749:7:4;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;804:85:1:-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;804:85;:::o;15678:429::-;7444:4:4;7468:16;;;:7;:16;;;;;;15751:13:1;;-1:-1:-1;;;;;7468:16:4;15773:49:1;;;;-1:-1:-1;;;15773:49:1;;10548:2:15;15773:49:1;;;10530:21:15;10587:2;10567:18;;;10560:30;-1:-1:-1;;;10606:18:15;;;10599:50;10666:18;;15773:49:1;10346:344:15;15773:49:1;15907:29;15939:21;15907:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16006:1;15980:15;15974:29;:33;:127;;16088:13;15974:127;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16041:15;16058:18;:7;:16;:18::i;:::-;16024:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;15974:127;15967:134;15678:429;-1:-1:-1;;;15678:429:1:o;1207:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2991:182::-;3068:7;-1:-1:-1;;;;;3091:19:1;;3083:44;;;;-1:-1:-1;;;3083:44:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3141:26:1;;;;;:19;:26;;;;;;;2991:182::o;15572:100::-;15625:13;15654:12;15647:19;;;;;:::i;9244:2113::-;9349:9;;:31;;-1:-1:-1;;;9349:31:1;;9369:10;9349:31;;;5970:51:15;9334:12:1;;-1:-1:-1;;;;;9349:9:1;;:19;;5943:18:15;;9349:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9334:46;-1:-1:-1;9397:9:1;;9393:974;;9439:1;9429:7;:11;9421:52;;;;-1:-1:-1;;;9421:52:1;;;;;;;:::i;:::-;9506:14;;-1:-1:-1;;;9506:14:1;;;;9498:49;;;;-1:-1:-1;;;9498:49:1;;;;;;;:::i;:::-;9562:19;;-1:-1:-1;;;9562:19:1;;;;9554:56;;;;-1:-1:-1;;;9554:56:1;;;;;;;:::i;:::-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;9625:23:1;9617:63;;;;-1:-1:-1;;;9617:63:1;;;;;;;:::i;:::-;9713:18;;9695:14;:36;;9687:81;;;;-1:-1:-1;;;9687:81:1;;;;;;;:::i;:::-;794:5;9808:14;9783:22;;:39;;;;:::i;:::-;:58;;9775:103;;;;-1:-1:-1;;;9775:103:1;;;;;;;:::i;:::-;9945:18;;9913:10;9893:31;;;;:19;:31;;;;;;:48;;9927:14;;9893:48;:::i;:::-;:70;;9885:111;;;;-1:-1:-1;;;9885:111:1;;;;;;;:::i;:::-;10037:9;10011:22;10019:14;973:10;10011:22;:::i;:::-;:35;;10003:76;;;;-1:-1:-1;;;10003:76:1;;;;;;;:::i;:::-;10093:9;10088:266;10112:14;10108:1;:18;10088:266;;;10198:22;;10144:15;;10162:33;742:5;;10162:33;:::i;:::-;:58;;;;:::i;:::-;:62;;10223:1;10162:62;:::i;:::-;10144:80;;10261:1;10235:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;10291:10:1;10271:31;;;;:19;:31;;;;;:36;;10306:1;;10271:31;:36;;10306:1;;10271:36;:::i;:::-;;;;-1:-1:-1;10316:30:1;;-1:-1:-1;10326:10:1;10338:7;10316:9;:30::i;:::-;-1:-1:-1;10128:3:1;;;;:::i;:::-;;;;10088:266;;;;9393:974;10383:12;10379:967;;10414:14;;-1:-1:-1;;;10414:14:1;;;;10406:49;;;;-1:-1:-1;;;10406:49:1;;;;;;;:::i;:::-;10470:19;;-1:-1:-1;;;10470:19:1;;;;10462:56;;;;-1:-1:-1;;;10462:56:1;;;;;;;:::i;:::-;10546:10;10533:24;;;;:12;:24;;;;;;;;10525:64;;;;-1:-1:-1;;;10525:64:1;;;;;;;:::i;:::-;794:5;838:33;794:5;;838:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;10604:23:1;10596:63;;;;-1:-1:-1;;;10596:63:1;;;;;;;:::i;:::-;10692:18;;10674:14;:36;;10666:81;;;;-1:-1:-1;;;10666:81:1;;;;;;;:::i;:::-;794:5;10787:14;10762:22;;:39;;;;:::i;:::-;:58;;10754:103;;;;-1:-1:-1;;;10754:103:1;;;;;;;:::i;:::-;10924:18;;10892:10;10872:31;;;;:19;:31;;;;;;:48;;10906:14;;10872:48;:::i;:::-;:70;;10864:111;;;;-1:-1:-1;;;10864:111:1;;;;;;;:::i;:::-;11016:9;10990:22;10998:14;973:10;10990:22;:::i;:::-;:35;;10982:76;;;;-1:-1:-1;;;10982:76:1;;;;;;;:::i;:::-;11072:9;11067:266;11091:14;11087:1;:18;11067:266;;;11177:22;;11123:15;;11141:33;742:5;;11141:33;:::i;:::-;:58;;;;:::i;:::-;:62;;11202:1;11141:62;:::i;:::-;11123:80;;11240:1;11214:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;11270:10:1;11250:31;;;;:19;:31;;;;;:36;;11285:1;;11250:31;:36;;11285:1;;11250:36;:::i;:::-;;;;-1:-1:-1;11295:30:1;;-1:-1:-1;11305:10:1;11317:7;11295:9;:30::i;:::-;-1:-1:-1;11107:3:1;;;;:::i;:::-;;;;11067:266;;1899:192:13;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:2;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;;8331:2:15;1980:73:13::1;::::0;::::1;8313:21:15::0;8370:2;8350:18;;;8343:30;8409:34;8389:18;;;8382:62;-1:-1:-1;;;8460:18:15;;;8453:36;8506:19;;1980:73:13::1;8129:402:15::0;1980:73:13::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;1481:305:4:-;1583:4;-1:-1:-1;;;;;;1620:40:4;;-1:-1:-1;;;1620:40:4;;:105;;-1:-1:-1;;;;;;;1677:48:4;;-1:-1:-1;;;1677:48:4;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:3;;;1742:36:4;787:157:3;11361:174:4;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:4;-1:-1:-1;;;;;11436:29:4;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:4;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;7783:73;;;;-1:-1:-1;;;7783:73:4;;11254:2:15;7783:73:4;;;11236:21:15;11293:2;11273:18;;;11266:30;11332:34;11312:18;;;11305:62;-1:-1:-1;;;11383:18:15;;;11376:42;11435:19;;7783:73:4;11052:408:15;7783:73:4;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;15471:2:15;10789:85:4;;;15453:21:15;15510:2;15490:18;;;15483:30;15549:34;15529:18;;;15522:62;-1:-1:-1;;;15600:18:15;;;15593:39;15649:19;;10789:85:4;15269:405:15;10789:85:4;-1:-1:-1;;;;;10893:16:4;;10885:65;;;;-1:-1:-1;;;10885:65:4;;9095:2:15;10885:65:4;;;9077:21:15;9134:2;9114:18;;;9107:30;9173:34;9153:18;;;9146:62;-1:-1:-1;;;9224:18:15;;;9217:34;9268:19;;10885:65:4;8893:400:15;10885:65:4;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:4;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:4;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:4;-1:-1:-1;;;;;11169:21:4;;;;;;;;;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:4:-;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:4;;;;;;;:::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:5;-1:-1:-1;;;;;2819:18:5;;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:5;:4;-1:-1:-1;;;;;2916:10:5;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:5;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:5;:2;-1:-1:-1;;;;;3116:10:5;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;8700:321:4:-;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:4;;;;;;;:::i;12100:803::-;12255:4;-1:-1:-1;;;;;12276:13:4;;1066:20:0;1114:8;12272:624:4;;12312:72;;-1:-1:-1;;;12312:72:4;;-1:-1:-1;;;;;12312:36:4;;;;;:72;;681:10:2;;12363:4:4;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:4;;;;;;;;-1:-1:-1;;12312:72:4;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:4;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:4;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:4;-1:-1:-1;;;12435:55:4;;-1:-1:-1;12428:62:4;;12272:624;-1:-1:-1;12880:4:4;12100:803;;;;;;:::o;4716:988:5:-;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:5;;;5194:328;;-1:-1:-1;;;;;5265:18:5;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:5;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:5;;;;;: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:5;;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:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:5:o;9357:382:4:-;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;13630:2:15;9429:61:4;;;13612:21:15;;;13649:18;;;13642:30;13708:34;13688:18;;;13681:62;13760:18;;9429:61:4;13428:356:15;9429:61:4;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;9501:58;;;;-1:-1:-1;;;9501:58:4;;8738:2:15;9501:58:4;;;8720:21:15;8777:2;8757:18;;;8750:30;8816;8796:18;;;8789:58;8864:18;;9501:58:4;8536:352:15;9501:58:4;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:15;82:20;;-1:-1:-1;;;;;131:31:15;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:15;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:15:o;2807:615::-;2893:6;2901;2954:2;2942:9;2933:7;2929:23;2925:32;2922:52;;;2970:1;2967;2960:12;2922:52;3010:9;2997:23;3039:18;3080:2;3072:6;3069:14;3066:34;;;3096:1;3093;3086:12;3066:34;3134:6;3123:9;3119:22;3109:32;;3179:7;3172:4;3168:2;3164:13;3160:27;3150:55;;3201:1;3198;3191:12;3150:55;3241:2;3228:16;3267:2;3259:6;3256:14;3253:34;;;3283:1;3280;3273:12;3253:34;3336:7;3331:2;3321:6;3318:1;3314:14;3310:2;3306:23;3302:32;3299:45;3296:65;;;3357:1;3354;3347:12;3296:65;3388:2;3380:11;;;;;3410:6;;-1:-1:-1;2807:615:15;;-1:-1:-1;;;;2807:615:15:o;3427:180::-;3483:6;3536:2;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3575:26;3591:9;3575:26;:::i;3612:245::-;3670:6;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3778:9;3765:23;3797:30;3821:5;3797:30;:::i;3862:249::-;3931:6;3984:2;3972:9;3963:7;3959:23;3955:32;3952:52;;;4000:1;3997;3990:12;3952:52;4032:9;4026:16;4051:30;4075:5;4051:30;:::i;4116:592::-;4187:6;4195;4248:2;4236:9;4227:7;4223:23;4219:32;4216:52;;;4264:1;4261;4254:12;4216:52;4304:9;4291:23;4333:18;4374:2;4366:6;4363:14;4360:34;;;4390:1;4387;4380:12;4360:34;4428:6;4417:9;4413:22;4403:32;;4473:7;4466:4;4462:2;4458:13;4454:27;4444:55;;4495:1;4492;4485:12;4444:55;4535:2;4522:16;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4622:7;4617:2;4608:6;4604:2;4600:15;4596:24;4593:37;4590:57;;;4643:1;4640;4633:12;4713:180;4772:6;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;-1:-1:-1;4864:23:15;;4713:180;-1:-1:-1;4713:180:15:o;4898:184::-;4968:6;5021:2;5009:9;5000:7;4996:23;4992:32;4989:52;;;5037:1;5034;5027:12;4989:52;-1:-1:-1;5060:16:15;;4898:184;-1:-1:-1;4898:184:15:o;5087:257::-;5128:3;5166:5;5160:12;5193:6;5188:3;5181:19;5209:63;5265:6;5258:4;5253:3;5249:14;5242:4;5235:5;5231:16;5209:63;:::i;:::-;5326:2;5305:15;-1:-1:-1;;5301:29:15;5292:39;;;;5333:4;5288:50;;5087:257;-1:-1:-1;;5087:257:15:o;5349:470::-;5528:3;5566:6;5560:13;5582:53;5628:6;5623:3;5616:4;5608:6;5604:17;5582:53;:::i;:::-;5698:13;;5657:16;;;;5720:57;5698:13;5657:16;5754:4;5742:17;;5720:57;:::i;:::-;5793:20;;5349:470;-1:-1:-1;;;;5349:470:15:o;6032:488::-;-1:-1:-1;;;;;6301:15:15;;;6283:34;;6353:15;;6348:2;6333:18;;6326:43;6400:2;6385:18;;6378:34;;;6448:3;6443:2;6428:18;;6421:31;;;6226:4;;6469:45;;6494:19;;6486:6;6469:45;:::i;:::-;6461:53;6032:488;-1:-1:-1;;;;;;6032:488:15:o;6717:219::-;6866:2;6855:9;6848:21;6829:4;6886:44;6926:2;6915:9;6911:18;6903:6;6886:44;:::i;6941:352::-;7143:2;7125:21;;;7182:2;7162:18;;;7155:30;7221;7216:2;7201:18;;7194:58;7284:2;7269:18;;6941:352::o;7710:414::-;7912:2;7894:21;;;7951:2;7931:18;;;7924:30;7990:34;7985:2;7970:18;;7963:62;-1:-1:-1;;;8056:2:15;8041:18;;8034:48;8114:3;8099:19;;7710:414::o;9652:348::-;9854:2;9836:21;;;9893:2;9873:18;;;9866:30;9932:26;9927:2;9912:18;;9905:54;9991:2;9976:18;;9652:348::o;10005:336::-;10207:2;10189:21;;;10246:2;10226:18;;;10219:30;-1:-1:-1;;;10280:2:15;10265:18;;10258:42;10332:2;10317:18;;10005:336::o;10695:352::-;10897:2;10879:21;;;10936:2;10916:18;;;10909:30;10975;10970:2;10955:18;;10948:58;11038:2;11023:18;;10695:352::o;12711:351::-;12913:2;12895:21;;;12952:2;12932:18;;;12925:30;12991:29;12986:2;12971:18;;12964:57;13053:2;13038:18;;12711:351::o;13067:356::-;13269:2;13251:21;;;13288:18;;;13281:30;13347:34;13342:2;13327:18;;13320:62;13414:2;13399:18;;13067:356::o;13789:346::-;13991:2;13973:21;;;14030:2;14010:18;;;14003:30;-1:-1:-1;;;14064:2:15;14049:18;;14042:52;14126:2;14111:18;;13789:346::o;14553:356::-;14755:2;14737:21;;;14774:18;;;14767:30;14833:34;14828:2;14813:18;;14806:62;14900:2;14885:18;;14553:356::o;14914:350::-;15116:2;15098:21;;;15155:2;15135:18;;;15128:30;15194:28;15189:2;15174:18;;15167:56;15255:2;15240:18;;14914:350::o;16081:413::-;16283:2;16265:21;;;16322:2;16302:18;;;16295:30;16361:34;16356:2;16341:18;;16334:62;-1:-1:-1;;;16427:2:15;16412:18;;16405:47;16484:3;16469:19;;16081:413::o;16912:352::-;17114:2;17096:21;;;17153:2;17133:18;;;17126:30;17192;17187:2;17172:18;;17165:58;17255:2;17240:18;;16912:352::o;17269:351::-;17471:2;17453:21;;;17510:2;17490:18;;;17483:30;17549:29;17544:2;17529:18;;17522:57;17611:2;17596:18;;17269:351::o;17625:356::-;17827:2;17809:21;;;17846:18;;;17839:30;17905:34;17900:2;17885:18;;17878:62;17972:2;17957:18;;17625:356::o;18168:128::-;18208:3;18239:1;18235:6;18232:1;18229:13;18226:39;;;18245:18;;:::i;:::-;-1:-1:-1;18281:9:15;;18168:128::o;18301:120::-;18341:1;18367;18357:35;;18372:18;;:::i;:::-;-1:-1:-1;18406:9:15;;18301:120::o;18426:168::-;18466:7;18532:1;18528;18524:6;18520:14;18517:1;18514:21;18509:1;18502:9;18495:17;18491:45;18488:71;;;18539:18;;:::i;:::-;-1:-1:-1;18579:9:15;;18426:168::o;18599:125::-;18639:4;18667:1;18664;18661:8;18658:34;;;18672:18;;:::i;:::-;-1:-1:-1;18709:9:15;;18599:125::o;18729:258::-;18801:1;18811:113;18825:6;18822:1;18819:13;18811:113;;;18901:11;;;18895:18;18882:11;;;18875:39;18847:2;18840:10;18811:113;;;18942:6;18939:1;18936:13;18933:48;;;-1:-1:-1;;18977:1:15;18959:16;;18952:27;18729:258::o;18992:380::-;19071:1;19067:12;;;;19114;;;19135:61;;19189:4;19181:6;19177:17;19167:27;;19135:61;19242:2;19234:6;19231:14;19211:18;19208:38;19205:161;;;19288:10;19283:3;19279:20;19276:1;19269:31;19323:4;19320:1;19313:15;19351:4;19348:1;19341:15;19205:161;;18992:380;;;:::o;19377:135::-;19416:3;-1:-1:-1;;19437:17:15;;19434:43;;;19457:18;;:::i;:::-;-1:-1:-1;19504:1:15;19493:13;;19377:135::o;19517:112::-;19549:1;19575;19565:35;;19580:18;;:::i;:::-;-1:-1:-1;19614:9:15;;19517:112::o;19634:127::-;19695:10;19690:3;19686:20;19683:1;19676:31;19726:4;19723:1;19716:15;19750:4;19747:1;19740:15;19766:127;19827:10;19822:3;19818:20;19815:1;19808:31;19858:4;19855:1;19848:15;19882:4;19879:1;19872:15;19898:127;19959:10;19954:3;19950:20;19947:1;19940:31;19990:4;19987:1;19980:15;20014:4;20011:1;20004:15;20030:127;20091:10;20086:3;20082:20;20079:1;20072:31;20122:4;20119:1;20112:15;20146:4;20143:1;20136:15;20162:127;20223:10;20218:3;20214:20;20211:1;20204:31;20254:4;20251:1;20244:15;20278:4;20275:1;20268:15;20294:131;-1:-1:-1;;;;;;20368:32:15;;20358:43;;20348:71;;20415:1;20412;20405:12

Swarm Source

ipfs://088568d4a6e2414908455c2680a5059e53403e6d0bc2886325281f7c5ffd2d5b
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.