ETH Price: $3,440.05 (-2.18%)
Gas: 3 Gwei

Token

Tatols (TATOLS)
 

Overview

Max Total Supply

2,345 TATOLS

Holders

492

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TATOLS
0x272217c3B6A836445CeadBA7990FAA183a4E5832
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:
Tatols

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./Address.sol";

contract Tatols is Ownable, ERC721A, ReentrancyGuard {

    using Address for address;

    uint256 constant private _allowlistSize = 1000;
    uint256 constant private _auctionSize = 9000;

    uint256 constant private _collectionSize = _allowlistSize + _auctionSize;
    uint256 constant private _maxBatchSize = 20;

    uint256 public allowlistCurrentIndex = 1;
    uint256 public auctionCurrentIndex = _allowlistSize + 1;

    address public immutable recipient;

    struct SaleConfig {
        uint32 startTime;
        uint32 endTime;
        uint256 mintPrice;
    }
    SaleConfig public saleConfig;

    mapping(address => uint256) public allowlist;

    string private _baseTokenURI;

    constructor() ERC721A("Tatols","TATOLS",_maxBatchSize,_collectionSize) {
        saleConfig = SaleConfig(1650456000, 1650715200, 0.025 * 10 ** 18);
        recipient = 0x6fD4409Bdefb6FF9ce3c7f34F5EBC2Be5Ca4349c;
        //Need explicit id starting with 'auctionCurrentIndex'
        nextOwnerToExplicitlySet = auctionCurrentIndex;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Tatols: The caller is another contract");
        _;
    }

    modifier checkTime() {
        require(
            block.timestamp >= uint256(saleConfig.startTime) &&
            block.timestamp <= uint256(saleConfig.endTime), 
            "Tatols: Out of sale time");
        _;
    }

    function totalSupply() public view override returns (uint256) {
        return totalSupplyOfAuction() + totalSupplyOfAllowlist();
    }

    function allTotalSupply() public view returns (uint256, uint256) {
        return (totalSupplyOfAuction(),totalSupplyOfAllowlist());
    }

    function totalSupplyOfAuction() internal view returns(uint256) {
        return auctionCurrentIndex - _allowlistSize - 1;
    }

    function totalSupplyOfAllowlist() internal view returns(uint256) {
        return allowlistCurrentIndex - 1;
    }

    function _exists(uint256 tokenId) internal view override returns (bool) {
        return 
            (tokenId > 0 && tokenId <= _allowlistSize && tokenId < allowlistCurrentIndex) ||
            (tokenId > _allowlistSize && tokenId < auctionCurrentIndex);
    }

    function _safeMint(address to, uint256 quantity, uint256 startTokenId) internal {
        _safeMint(to, quantity, startTokenId, "");
    }

    function _safeMint(address to, uint256 quantity, uint256 startTokenId, bytes memory _data) internal {
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );

        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;
        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    function auctionMint(uint256 quantity) external payable callerIsUser checkTime {
        require(
            totalSupplyOfAuction() + quantity <= _auctionSize,
            "Tatols: not enough remaining reserved for auction to support desired mint amount");
        
        uint256 totalCost = uint256(saleConfig.mintPrice) * quantity;
        _safeMint(msg.sender, quantity, auctionCurrentIndex);
        auctionCurrentIndex += quantity;
        refundIfOver(totalCost);
        
        payable(recipient).transfer(totalCost);
    }

    function allowlistMint() external payable callerIsUser checkTime {
        require(allowlist[msg.sender] > 0, "Tatols: not eligible for allowlist mint");
        require(totalSupplyOfAllowlist() + 1 <= _allowlistSize, "Tatols: reached max supply");
        allowlist[msg.sender]--;
        _safeMint(msg.sender, 1, allowlistCurrentIndex);
        allowlistCurrentIndex ++;
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Tatols: Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function seedAllowlist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner {
        require(addresses.length == numSlots.length,"Tatols: addresses does not match numSlots length");
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = numSlots[i];
        }
    }

    function setSaleInfo(uint32 startTime, uint32 endTime, uint256 mintPrice) external onlyOwner {
        saleConfig = SaleConfig(startTime, endTime, mintPrice);
    }

    function setSaleTime(uint32 startTime, uint32 endTime) external onlyOwner {
        saleConfig.startTime = startTime;
        saleConfig.endTime = endTime;
    }

    function getSaleTime() external view returns(uint256,uint256) {
        return (saleConfig.startTime, saleConfig.endTime);
    }

    function setSaleMintPrice(uint256 mintPrice) external onlyOwner {
        saleConfig.mintPrice = mintPrice;
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        Address.sendValue(payable(recipient), address(this).balance);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
        _setOwnersExplicit(quantity);
    }

    function devAllowlistMint(uint256 quantity) external onlyOwner {
        require(
            totalSupplyOfAllowlist() + quantity <= _allowlistSize, 
            "Tatols: not enough remaining reserved for auction to support desired mint amount");
        
        require(
            quantity % maxBatchSize == 0,
            "Tatols: can only mint a multiple of the maxBatchSize");

        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize, allowlistCurrentIndex);
            allowlistCurrentIndex += maxBatchSize;
        }
    }

    function devAuctionMint(uint256 quantity) external onlyOwner {
        require(
            totalSupplyOfAuction() + quantity <= _auctionSize, 
            "Tatols: not enough remaining reserved for auction to support desired mint amount");
        
        require(
            quantity % maxBatchSize == 0,
            "Tatols: can only mint a multiple of the maxBatchSize");
        
        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize, auctionCurrentIndex);
            auctionCurrentIndex += maxBatchSize;
        }
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }
    
    function exists(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }
    
    function getAllowlistQuantity(address account) external view returns(uint256) {
        return allowlist[account];
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    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");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    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");
    }

    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);
    }

    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    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);
    }

    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    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
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

pragma solidity ^0.8.0;

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


contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  // mapping(uint256 => TokenOwnership) private _ownerships;
  mapping(uint256 => TokenOwnership) internal _ownerships;


  // Mapping owner address to address data
  // mapping(address => AddressData) private _addressData;
  mapping(address => AddressData) internal _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  // function _exists(uint256 tokenId) internal view returns (bool) {
  function _exists(uint256 tokenId) internal view virtual returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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
  ) internal 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("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";


interface IERC721 is IERC165 {
   
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);


    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);


    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);


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

    
    function ownerOf(uint256 tokenId) external view returns (address owner);

    
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

 
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

 
    function approve(address to, uint256 tokenId) external;

 
    function setApprovalForAll(address operator, bool _approved) external;


    function getApproved(uint256 tokenId) external view returns (address operator);

    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

interface IERC721Enumerable is IERC721 {

    function totalSupply() external view returns (uint256);

    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

interface IERC721Metadata is IERC721 {

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

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

    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

interface IERC721Receiver {

    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 11 of 13: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {

    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 12 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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":[],"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":"allTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devAuctionMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAllowlistQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600060015560006008556001600a556103e8600162000024919062000308565b600b553480156200003457600080fd5b50604051806040016040528060068152602001655461746f6c7360d01b815250604051806040016040528060068152602001655441544f4c5360d01b81525060146123286103e862000087919062000308565b620000923362000212565b60008111620000ff5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001615760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000f6565b83516200017690600290602087019062000262565b5082516200018c90600390602086019062000262565b5060a091909152608052505060016009556040805160608101825263625ff5c08152636263ea4060208201526658d15e176280009101819052600c80546001600160401b031916676263ea40625ff5c0179055600d557f6fd4409bdefb6ff9ce3c7f34f5ebc2be5ca4349c00000000000000000000000060c052600b546008556200036c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000270906200032f565b90600052602060002090601f016020900481019282620002945760008555620002df565b82601f10620002af57805160ff1916838001178555620002df565b82800160010185558215620002df579182015b82811115620002df578251825591602001919060010190620002c2565b50620002ed929150620002f1565b5090565b5b80821115620002ed5760008155600101620002f2565b600082198211156200032a57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200034457607f821691505b602082108114156200036657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160601c6145c8620003fa60003960008181610567015281816118b701526120a0015260008181611513015281816115cc015281816116040152818161162d01528181611d0301528181611dbc01528181611df401528181611e1d015281816130ab015281816130d50152613932015260008181612d4c0152612d7e01526145c86000f3fe6080604052600436106102d15760003560e01c8063851d4c5711610179578063b88d4fde116100d6578063cbf21fe41161008a578063dc33e68111610064578063dc33e6811461085f578063e985e9c51461087f578063f2fde38b146108d557600080fd5b8063cbf21fe414610802578063cda09d9314610829578063d7224ba01461084957600080fd5b8063ba64c7d6116100bb578063ba64c7d614610798578063c87b56dd146107b8578063c90fc8ee146107d857600080fd5b8063b88d4fde14610762578063b93bd7f91461078257600080fd5b806395d89b411161012d578063a7cd52cb11610112578063a7cd52cb14610700578063ac4460021461072d578063b05863d51461074257600080fd5b806395d89b41146106cb578063a22cb465146106e057600080fd5b80638da5cb5b1161015e5780638da5cb5b146105f457806390aa0b0f1461061f5780639231ab2a1461067057600080fd5b8063851d4c57146105be57806386dd8e6d146105d457600080fd5b806342842e0e116102325780634f6ccce7116101e657806366d003ac116101c057806366d003ac1461055557806370a0823114610589578063715018a6146105a957600080fd5b80634f6ccce7146104f557806355f804b3146105155780636352211e1461053557600080fd5b80634ac6e3b6116102175780634ac6e3b6146104a25780634d3554c3146104c25780634f558e79146104d557600080fd5b806342842e0e146104625780634938b1ef1461048257600080fd5b80631da0a5d9116102895780632d20fb601161026e5780632d20fb601461041a5780632f745c591461043a57806341fbddbd1461045a57600080fd5b80631da0a5d9146103b757806323b872dd146103fa57600080fd5b8063081812fc116102ba578063081812fc1461032d578063095ea7b31461037257806318160ddd1461039457600080fd5b806301ffc9a7146102d657806306fdde031461030b575b600080fd5b3480156102e257600080fd5b506102f66102f1366004614067565b6108f5565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b50610320610a26565b6040516103029190614244565b34801561033957600080fd5b5061034d610348366004614113565b610ab8565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610302565b34801561037e57600080fd5b5061039261038d366004613f76565b610b7d565b005b3480156103a057600080fd5b506103a9610d0b565b604051908152602001610302565b3480156103c357600080fd5b506103a96103d2366004613dd2565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561040657600080fd5b50610392610415366004613e20565b610d2c565b34801561042657600080fd5b50610392610435366004614113565b610d37565b34801561044657600080fd5b506103a9610455366004613f76565b610e3b565b610392611049565b34801561046e57600080fd5b5061039261047d366004613e20565b6112c5565b34801561048e57600080fd5b5061039261049d366004614156565b6112e0565b3480156104ae57600080fd5b506103926104bd366004614113565b6113c3565b6103926104d0366004614113565b611675565b3480156104e157600080fd5b506102f66104f0366004614113565b611900565b34801561050157600080fd5b506103a9610510366004614113565b61190b565b34801561052157600080fd5b506103926105303660046140a1565b6119a7565b34801561054157600080fd5b5061034d610550366004614113565b611a34565b34801561056157600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561059557600080fd5b506103a96105a4366004613dd2565b611a46565b3480156105b557600080fd5b50610392611b26565b3480156105ca57600080fd5b506103a9600b5481565b3480156105e057600080fd5b506103926105ef366004614113565b611bb3565b34801561060057600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661034d565b34801561062b57600080fd5b50600c54600d5461064d9163ffffffff80821692640100000000909204169083565b6040805163ffffffff948516815293909216602084015290820152606001610302565b34801561067c57600080fd5b5061069061068b366004614113565b611e65565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260209283015167ffffffffffffffff169281019290925201610302565b3480156106d757600080fd5b50610320611e82565b3480156106ec57600080fd5b506103926106fb366004613f3a565b611e91565b34801561070c57600080fd5b506103a961071b366004613dd2565b600e6020526000908152604090205481565b34801561073957600080fd5b50610392611fa8565b34801561074e57600080fd5b5061039261075d366004613fa0565b6120cc565b34801561076e57600080fd5b5061039261077d366004613e5c565b612273565b34801561078e57600080fd5b506103a9600a5481565b3480156107a457600080fd5b506103926107b3366004614113565b61231c565b3480156107c457600080fd5b506103206107d3366004614113565b6123a2565b3480156107e457600080fd5b506107ed612495565b60408051928352602083019190915201610302565b34801561080e57600080fd5b50600c5463ffffffff808216916401000000009004166107ed565b34801561083557600080fd5b5061039261084436600461412c565b6124b0565b34801561085557600080fd5b506103a960085481565b34801561086b57600080fd5b506103a961087a366004613dd2565b612578565b34801561088b57600080fd5b506102f661089a366004613ded565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108e157600080fd5b506103926108f0366004613dd2565b612583565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061098857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109d457507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610a2057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610a3590614407565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6190614407565b8015610aae5780601f10610a8357610100808354040283529160200191610aae565b820191906000526020600020905b815481529060010190602001808311610a9157829003601f168201915b5050505050905090565b6000610ac3826126b3565b610b54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b8882611a34565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c6f5750610c6f813361089a565b610cfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b4b565b610d068383836126ed565b505050565b6000610d1561276e565b610d1d61277f565b610d2791906142f5565b905090565b610d0683838361279d565b60005473ffffffffffffffffffffffffffffffffffffffff163314610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b60026009541415610e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b4b565b6002600955610e3381612cc1565b506001600955565b6000610e4683611a46565b8210610ed4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b6000610ede610d0b565b905060008060005b83811015610fc05760008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f5757805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fad5786841415610f9f57509350610a2092505050565b83610fa98161445b565b9450505b5080610fb88161445b565b915050610ee6565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b4b565b3233146110d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5461746f6c733a205468652063616c6c657220697320616e6f7468657220636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610b4b565b600c5463ffffffff1642108015906111005750600c54640100000000900463ffffffff164211155b611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f5461746f6c733a204f7574206f662073616c652074696d6500000000000000006044820152606401610b4b565b336000908152600e6020526040902054611202576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5461746f6c733a206e6f7420656c696769626c6520666f7220616c6c6f776c6960448201527f7374206d696e74000000000000000000000000000000000000000000000000006064820152608401610b4b565b6103e861120d61276e565b6112189060016142f5565b1115611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5461746f6c733a2072656163686564206d617820737570706c790000000000006044820152606401610b4b565b336000908152600e6020526040812080549161129b836143d2565b91905055506112ae336001600a54612f37565b600a80549060006112be8361445b565b9190505550565b610d0683838360405180602001604052806000815250612273565b60005473ffffffffffffffffffffffffffffffffffffffff163314611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b6040805160608101825263ffffffff94851680825293909416602085018190529301819052600c80547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000016909217640100000000909302929092179055600d55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b6123288161145061277f565b61145a91906142f5565b111561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f5461746f6c733a206e6f7420656e6f7567682072656d61696e696e672072657360448201527f657276656420666f722061756374696f6e20746f20737570706f72742064657360648201527f69726564206d696e7420616d6f756e7400000000000000000000000000000000608482015260a401610b4b565b6115387f000000000000000000000000000000000000000000000000000000000000000082614494565b156115c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5461746f6c733a2063616e206f6e6c79206d696e742061206d756c7469706c6560448201527f206f6620746865206d6178426174636853697a650000000000000000000000006064820152608401610b4b565b60006115f17f00000000000000000000000000000000000000000000000000000000000000008361430d565b905060005b81811015610d065761162b337f0000000000000000000000000000000000000000000000000000000000000000600b54612f37565b7f0000000000000000000000000000000000000000000000000000000000000000600b600082825461165d91906142f5565b9091555081905061166d8161445b565b9150506115f6565b323314611704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5461746f6c733a205468652063616c6c657220697320616e6f7468657220636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610b4b565b600c5463ffffffff16421080159061172c5750600c54640100000000900463ffffffff164211155b611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f5461746f6c733a204f7574206f662073616c652074696d6500000000000000006044820152606401610b4b565b6123288161179e61277f565b6117a891906142f5565b111561185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f5461746f6c733a206e6f7420656e6f7567682072656d61696e696e672072657360448201527f657276656420666f722061756374696f6e20746f20737570706f72742064657360648201527f69726564206d696e7420616d6f756e7400000000000000000000000000000000608482015260a401610b4b565b600d5460009061186d908390614321565b905061187c3383600b54612f37565b81600b600082825461188e91906142f5565b9091555061189d905081612f52565b60405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169082156108fc029083906000818181858888f19350505050158015610d06573d6000803e3d6000fd5b6000610a20826126b3565b6000611915610d0b565b82106119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b5090565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b610d06600f8383613c75565b6000611a3f82612ffe565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611aeb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610b4b565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ba7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b611bb16000613219565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b6103e881611c4061276e565b611c4a91906142f5565b1115611cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f5461746f6c733a206e6f7420656e6f7567682072656d61696e696e672072657360448201527f657276656420666f722061756374696f6e20746f20737570706f72742064657360648201527f69726564206d696e7420616d6f756e7400000000000000000000000000000000608482015260a401610b4b565b611d287f000000000000000000000000000000000000000000000000000000000000000082614494565b15611db5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5461746f6c733a2063616e206f6e6c79206d696e742061206d756c7469706c6560448201527f206f6620746865206d6178426174636853697a650000000000000000000000006064820152608401610b4b565b6000611de17f00000000000000000000000000000000000000000000000000000000000000008361430d565b905060005b81811015610d0657611e1b337f0000000000000000000000000000000000000000000000000000000000000000600a54612f37565b7f0000000000000000000000000000000000000000000000000000000000000000600a6000828254611e4d91906142f5565b90915550819050611e5d8161445b565b915050611de6565b6040805180820190915260008082526020820152610a2082612ffe565b606060038054610a3590614407565b73ffffffffffffffffffffffffffffffffffffffff8216331415611f11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b4b565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b60026009541415612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b4b565b60026009556120c57f00000000000000000000000000000000000000000000000000000000000000004761328e565b6001600955565b60005473ffffffffffffffffffffffffffffffffffffffff16331461214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b80518251146121de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f5461746f6c733a2061646472657373657320646f6573206e6f74206d6174636860448201527f206e756d536c6f7473206c656e677468000000000000000000000000000000006064820152608401610b4b565b60005b8251811015610d06578181815181106121fc576121fc614506565b6020026020010151600e600085848151811061221a5761221a614506565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061226b9061445b565b9150506121e1565b61227e84848461279d565b61228a848484846133e8565b612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b4b565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b600d55565b60606123ad826126b3565b612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b4b565b60006124436135e8565b90506000815111612463576040518060200160405280600081525061248e565b8061246d846135f7565b60405160200161247e9291906141cc565b6040516020818303038152906040525b9392505050565b6000806124a061277f565b6124a861276e565b915091509091565b60005473ffffffffffffffffffffffffffffffffffffffff163314612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b600c805463ffffffff928316640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009091169290931691909117919091179055565b6000610a2082613729565b60005473ffffffffffffffffffffffffffffffffffffffff163314612604576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b73ffffffffffffffffffffffffffffffffffffffff81166126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b4b565b6126b081613219565b50565b600080821180156126c657506103e88211155b80156126d35750600a5482105b80610a2057506103e882118015610a20575050600b541190565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006001600a54610d27919061438f565b600060016103e8600b54612793919061438f565b610d27919061438f565b60006127a882612ffe565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128065750336127ee84610ab8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061281857508151612818903361089a565b9050806128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b4b565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610b4b565b73ffffffffffffffffffffffffffffffffffffffff8416612a09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b4b565b612a1960008484600001516126ed565b73ffffffffffffffffffffffffffffffffffffffff85166000908152600560205260408120805460019290612a619084906fffffffffffffffffffffffffffffffff1661435e565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff861660009081526005602052604081208054600194509092612ac3918591166142ca565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600490915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612b8a8460016142f5565b60008181526004602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16612c5d57612bbf816126b3565b15612c5d57604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff908116828501908152600087815260049093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481612d2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b4b565b60006001612d3984846142f5565b612d43919061438f565b9050612d7060017f000000000000000000000000000000000000000000000000000000000000000061438f565b811115612da557612da260017f000000000000000000000000000000000000000000000000000000000000000061438f565b90505b612dae816126b3565b612e3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201527f6c65616e757000000000000000000000000000000000000000000000000000006064820152608401610b4b565b815b818111612f235760008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16612f11576000612e7782612ffe565b604080518082018252825173ffffffffffffffffffffffffffffffffffffffff908116825260209384015167ffffffffffffffff908116858401908152600088815260049096529390942091518254935190941674010000000000000000000000000000000000000000027fffffffff00000000000000000000000000000000000000000000000000000000909316931692909217179055505b80612f1b8161445b565b915050612e3c565b50612f2f8160016142f5565b600855505050565b610d068383836040518060200160405280600081525061381d565b80341015612fbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5461746f6c733a204e65656420746f2073656e64206d6f7265204554482e00006044820152606401610b4b565b803411156126b057336108fc612fd2833461438f565b6040518115909202916000818181858888f19350505050158015612ffa573d6000803e3d6000fd5b5050565b604080518082019091526000808252602082015261301b826126b3565b6130a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b4b565b60007f00000000000000000000000000000000000000000000000000000000000000008310613108576130fa7f00000000000000000000000000000000000000000000000000000000000000008461438f565b6131059060016142f5565b90505b825b8181106131905760008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561317d57949350505050565b5080613188816143d2565b91505061310a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610b4b565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156132f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b4b565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114613352576040519150601f19603f3d011682016040523d82523d6000602084013e613357565b606091505b5050905080610d06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b4b565b600073ffffffffffffffffffffffffffffffffffffffff84163b156135dc576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061345f9033908990889088906004016141fb565b602060405180830381600087803b15801561347957600080fd5b505af19250505080156134c7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526134c491810190614084565b60015b613591573d8080156134f5576040519150601f19603f3d011682016040523d82523d6000602084013e6134fa565b606091505b508051613589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b4b565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506135e0565b5060015b949350505050565b6060600f8054610a3590614407565b60608161363757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613661578061364b8161445b565b915061365a9050600a8361430d565b915061363b565b60008167ffffffffffffffff81111561367c5761367c614535565b6040519080825280601f01601f1916602001820160405280156136a6576020820181803683370190505b5090505b84156135e0576136bb60018361438f565b91506136c8600a86614494565b6136d39060306142f5565b60f81b8183815181106136e8576136e8614506565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613722600a8661430d565b94506136aa565b600073ffffffffffffffffffffffffffffffffffffffff82166137ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610b4b565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff84166138c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b6138c9826126b3565b15613930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b4b565b7f00000000000000000000000000000000000000000000000000000000000000008311156139e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600560209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190613a5f9087906142ca565b6fffffffffffffffffffffffffffffffff168152602001858360200151613a8691906142ca565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260056020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152898352600490955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915583905b85811015613c6f57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4613bc360008884876133e8565b613c4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b4b565b81613c598161445b565b9250508080613c679061445b565b915050613b69565b50612cb9565b828054613c8190614407565b90600052602060002090601f016020900481019282613ca35760008555613d07565b82601f10613cda578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555613d07565b82800160010185558215613d07579182015b82811115613d07578235825591602001919060010190613cec565b506119a39291505b808211156119a35760008155600101613d0f565b803573ffffffffffffffffffffffffffffffffffffffff81168114613d4757600080fd5b919050565b600082601f830112613d5d57600080fd5b81356020613d72613d6d836142a6565b614257565b80838252828201915082860187848660051b8901011115613d9257600080fd5b60005b85811015613db157813584529284019290840190600101613d95565b5090979650505050505050565b803563ffffffff81168114613d4757600080fd5b600060208284031215613de457600080fd5b61248e82613d23565b60008060408385031215613e0057600080fd5b613e0983613d23565b9150613e1760208401613d23565b90509250929050565b600080600060608486031215613e3557600080fd5b613e3e84613d23565b9250613e4c60208501613d23565b9150604084013590509250925092565b60008060008060808587031215613e7257600080fd5b613e7b85613d23565b93506020613e8a818701613d23565b935060408601359250606086013567ffffffffffffffff80821115613eae57600080fd5b818801915088601f830112613ec257600080fd5b813581811115613ed457613ed4614535565b613f04847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601614257565b91508082528984828501011115613f1a57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215613f4d57600080fd5b613f5683613d23565b915060208301358015158114613f6b57600080fd5b809150509250929050565b60008060408385031215613f8957600080fd5b613f9283613d23565b946020939093013593505050565b60008060408385031215613fb357600080fd5b823567ffffffffffffffff80821115613fcb57600080fd5b818501915085601f830112613fdf57600080fd5b81356020613fef613d6d836142a6565b8083825282820191508286018a848660051b890101111561400f57600080fd5b600096505b848710156140395761402581613d23565b835260019690960195918301918301614014565b509650508601359250508082111561405057600080fd5b5061405d85828601613d4c565b9150509250929050565b60006020828403121561407957600080fd5b813561248e81614564565b60006020828403121561409657600080fd5b815161248e81614564565b600080602083850312156140b457600080fd5b823567ffffffffffffffff808211156140cc57600080fd5b818501915085601f8301126140e057600080fd5b8135818111156140ef57600080fd5b86602082850101111561410157600080fd5b60209290920196919550909350505050565b60006020828403121561412557600080fd5b5035919050565b6000806040838503121561413f57600080fd5b61414883613dbe565b9150613e1760208401613dbe565b60008060006060848603121561416b57600080fd5b61417484613dbe565b9250613e4c60208501613dbe565b6000815180845261419a8160208601602086016143a6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516141de8184602088016143a6565b8351908301906141f28183602088016143a6565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261423a6080830184614182565b9695505050505050565b60208152600061248e6020830184614182565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561429e5761429e614535565b604052919050565b600067ffffffffffffffff8211156142c0576142c0614535565b5060051b60200190565b60006fffffffffffffffffffffffffffffffff8083168185168083038211156141f2576141f26144a8565b60008219821115614308576143086144a8565b500190565b60008261431c5761431c6144d7565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614359576143596144a8565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015614387576143876144a8565b039392505050565b6000828210156143a1576143a16144a8565b500390565b60005b838110156143c15781810151838201526020016143a9565b838111156123165750506000910152565b6000816143e1576143e16144a8565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061441b57607f821691505b60208210811415614455577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561448d5761448d6144a8565b5060010190565b6000826144a3576144a36144d7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146126b057600080fdfea2646970667358221220082f028a0849f7e80b0665ff010fd7694960eb887dac657175a624ea541fc41964736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102d15760003560e01c8063851d4c5711610179578063b88d4fde116100d6578063cbf21fe41161008a578063dc33e68111610064578063dc33e6811461085f578063e985e9c51461087f578063f2fde38b146108d557600080fd5b8063cbf21fe414610802578063cda09d9314610829578063d7224ba01461084957600080fd5b8063ba64c7d6116100bb578063ba64c7d614610798578063c87b56dd146107b8578063c90fc8ee146107d857600080fd5b8063b88d4fde14610762578063b93bd7f91461078257600080fd5b806395d89b411161012d578063a7cd52cb11610112578063a7cd52cb14610700578063ac4460021461072d578063b05863d51461074257600080fd5b806395d89b41146106cb578063a22cb465146106e057600080fd5b80638da5cb5b1161015e5780638da5cb5b146105f457806390aa0b0f1461061f5780639231ab2a1461067057600080fd5b8063851d4c57146105be57806386dd8e6d146105d457600080fd5b806342842e0e116102325780634f6ccce7116101e657806366d003ac116101c057806366d003ac1461055557806370a0823114610589578063715018a6146105a957600080fd5b80634f6ccce7146104f557806355f804b3146105155780636352211e1461053557600080fd5b80634ac6e3b6116102175780634ac6e3b6146104a25780634d3554c3146104c25780634f558e79146104d557600080fd5b806342842e0e146104625780634938b1ef1461048257600080fd5b80631da0a5d9116102895780632d20fb601161026e5780632d20fb601461041a5780632f745c591461043a57806341fbddbd1461045a57600080fd5b80631da0a5d9146103b757806323b872dd146103fa57600080fd5b8063081812fc116102ba578063081812fc1461032d578063095ea7b31461037257806318160ddd1461039457600080fd5b806301ffc9a7146102d657806306fdde031461030b575b600080fd5b3480156102e257600080fd5b506102f66102f1366004614067565b6108f5565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b50610320610a26565b6040516103029190614244565b34801561033957600080fd5b5061034d610348366004614113565b610ab8565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610302565b34801561037e57600080fd5b5061039261038d366004613f76565b610b7d565b005b3480156103a057600080fd5b506103a9610d0b565b604051908152602001610302565b3480156103c357600080fd5b506103a96103d2366004613dd2565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561040657600080fd5b50610392610415366004613e20565b610d2c565b34801561042657600080fd5b50610392610435366004614113565b610d37565b34801561044657600080fd5b506103a9610455366004613f76565b610e3b565b610392611049565b34801561046e57600080fd5b5061039261047d366004613e20565b6112c5565b34801561048e57600080fd5b5061039261049d366004614156565b6112e0565b3480156104ae57600080fd5b506103926104bd366004614113565b6113c3565b6103926104d0366004614113565b611675565b3480156104e157600080fd5b506102f66104f0366004614113565b611900565b34801561050157600080fd5b506103a9610510366004614113565b61190b565b34801561052157600080fd5b506103926105303660046140a1565b6119a7565b34801561054157600080fd5b5061034d610550366004614113565b611a34565b34801561056157600080fd5b5061034d7f0000000000000000000000006fd4409bdefb6ff9ce3c7f34f5ebc2be5ca4349c81565b34801561059557600080fd5b506103a96105a4366004613dd2565b611a46565b3480156105b557600080fd5b50610392611b26565b3480156105ca57600080fd5b506103a9600b5481565b3480156105e057600080fd5b506103926105ef366004614113565b611bb3565b34801561060057600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661034d565b34801561062b57600080fd5b50600c54600d5461064d9163ffffffff80821692640100000000909204169083565b6040805163ffffffff948516815293909216602084015290820152606001610302565b34801561067c57600080fd5b5061069061068b366004614113565b611e65565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260209283015167ffffffffffffffff169281019290925201610302565b3480156106d757600080fd5b50610320611e82565b3480156106ec57600080fd5b506103926106fb366004613f3a565b611e91565b34801561070c57600080fd5b506103a961071b366004613dd2565b600e6020526000908152604090205481565b34801561073957600080fd5b50610392611fa8565b34801561074e57600080fd5b5061039261075d366004613fa0565b6120cc565b34801561076e57600080fd5b5061039261077d366004613e5c565b612273565b34801561078e57600080fd5b506103a9600a5481565b3480156107a457600080fd5b506103926107b3366004614113565b61231c565b3480156107c457600080fd5b506103206107d3366004614113565b6123a2565b3480156107e457600080fd5b506107ed612495565b60408051928352602083019190915201610302565b34801561080e57600080fd5b50600c5463ffffffff808216916401000000009004166107ed565b34801561083557600080fd5b5061039261084436600461412c565b6124b0565b34801561085557600080fd5b506103a960085481565b34801561086b57600080fd5b506103a961087a366004613dd2565b612578565b34801561088b57600080fd5b506102f661089a366004613ded565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108e157600080fd5b506103926108f0366004613dd2565b612583565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061098857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109d457507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610a2057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610a3590614407565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6190614407565b8015610aae5780601f10610a8357610100808354040283529160200191610aae565b820191906000526020600020905b815481529060010190602001808311610a9157829003601f168201915b5050505050905090565b6000610ac3826126b3565b610b54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b8882611a34565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c6f5750610c6f813361089a565b610cfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b4b565b610d068383836126ed565b505050565b6000610d1561276e565b610d1d61277f565b610d2791906142f5565b905090565b610d0683838361279d565b60005473ffffffffffffffffffffffffffffffffffffffff163314610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b60026009541415610e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b4b565b6002600955610e3381612cc1565b506001600955565b6000610e4683611a46565b8210610ed4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b6000610ede610d0b565b905060008060005b83811015610fc05760008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f5757805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fad5786841415610f9f57509350610a2092505050565b83610fa98161445b565b9450505b5080610fb88161445b565b915050610ee6565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b4b565b3233146110d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5461746f6c733a205468652063616c6c657220697320616e6f7468657220636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610b4b565b600c5463ffffffff1642108015906111005750600c54640100000000900463ffffffff164211155b611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f5461746f6c733a204f7574206f662073616c652074696d6500000000000000006044820152606401610b4b565b336000908152600e6020526040902054611202576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5461746f6c733a206e6f7420656c696769626c6520666f7220616c6c6f776c6960448201527f7374206d696e74000000000000000000000000000000000000000000000000006064820152608401610b4b565b6103e861120d61276e565b6112189060016142f5565b1115611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5461746f6c733a2072656163686564206d617820737570706c790000000000006044820152606401610b4b565b336000908152600e6020526040812080549161129b836143d2565b91905055506112ae336001600a54612f37565b600a80549060006112be8361445b565b9190505550565b610d0683838360405180602001604052806000815250612273565b60005473ffffffffffffffffffffffffffffffffffffffff163314611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b6040805160608101825263ffffffff94851680825293909416602085018190529301819052600c80547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000016909217640100000000909302929092179055600d55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b6123288161145061277f565b61145a91906142f5565b111561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f5461746f6c733a206e6f7420656e6f7567682072656d61696e696e672072657360448201527f657276656420666f722061756374696f6e20746f20737570706f72742064657360648201527f69726564206d696e7420616d6f756e7400000000000000000000000000000000608482015260a401610b4b565b6115387f000000000000000000000000000000000000000000000000000000000000001482614494565b156115c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5461746f6c733a2063616e206f6e6c79206d696e742061206d756c7469706c6560448201527f206f6620746865206d6178426174636853697a650000000000000000000000006064820152608401610b4b565b60006115f17f00000000000000000000000000000000000000000000000000000000000000148361430d565b905060005b81811015610d065761162b337f0000000000000000000000000000000000000000000000000000000000000014600b54612f37565b7f0000000000000000000000000000000000000000000000000000000000000014600b600082825461165d91906142f5565b9091555081905061166d8161445b565b9150506115f6565b323314611704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5461746f6c733a205468652063616c6c657220697320616e6f7468657220636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610b4b565b600c5463ffffffff16421080159061172c5750600c54640100000000900463ffffffff164211155b611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f5461746f6c733a204f7574206f662073616c652074696d6500000000000000006044820152606401610b4b565b6123288161179e61277f565b6117a891906142f5565b111561185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f5461746f6c733a206e6f7420656e6f7567682072656d61696e696e672072657360448201527f657276656420666f722061756374696f6e20746f20737570706f72742064657360648201527f69726564206d696e7420616d6f756e7400000000000000000000000000000000608482015260a401610b4b565b600d5460009061186d908390614321565b905061187c3383600b54612f37565b81600b600082825461188e91906142f5565b9091555061189d905081612f52565b60405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006fd4409bdefb6ff9ce3c7f34f5ebc2be5ca4349c169082156108fc029083906000818181858888f19350505050158015610d06573d6000803e3d6000fd5b6000610a20826126b3565b6000611915610d0b565b82106119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b5090565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b610d06600f8383613c75565b6000611a3f82612ffe565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611aeb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610b4b565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ba7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b611bb16000613219565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b6103e881611c4061276e565b611c4a91906142f5565b1115611cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f5461746f6c733a206e6f7420656e6f7567682072656d61696e696e672072657360448201527f657276656420666f722061756374696f6e20746f20737570706f72742064657360648201527f69726564206d696e7420616d6f756e7400000000000000000000000000000000608482015260a401610b4b565b611d287f000000000000000000000000000000000000000000000000000000000000001482614494565b15611db5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5461746f6c733a2063616e206f6e6c79206d696e742061206d756c7469706c6560448201527f206f6620746865206d6178426174636853697a650000000000000000000000006064820152608401610b4b565b6000611de17f00000000000000000000000000000000000000000000000000000000000000148361430d565b905060005b81811015610d0657611e1b337f0000000000000000000000000000000000000000000000000000000000000014600a54612f37565b7f0000000000000000000000000000000000000000000000000000000000000014600a6000828254611e4d91906142f5565b90915550819050611e5d8161445b565b915050611de6565b6040805180820190915260008082526020820152610a2082612ffe565b606060038054610a3590614407565b73ffffffffffffffffffffffffffffffffffffffff8216331415611f11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b4b565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b60026009541415612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b4b565b60026009556120c57f0000000000000000000000006fd4409bdefb6ff9ce3c7f34f5ebc2be5ca4349c4761328e565b6001600955565b60005473ffffffffffffffffffffffffffffffffffffffff16331461214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b80518251146121de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f5461746f6c733a2061646472657373657320646f6573206e6f74206d6174636860448201527f206e756d536c6f7473206c656e677468000000000000000000000000000000006064820152608401610b4b565b60005b8251811015610d06578181815181106121fc576121fc614506565b6020026020010151600e600085848151811061221a5761221a614506565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061226b9061445b565b9150506121e1565b61227e84848461279d565b61228a848484846133e8565b612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b4b565b50505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b600d55565b60606123ad826126b3565b612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b4b565b60006124436135e8565b90506000815111612463576040518060200160405280600081525061248e565b8061246d846135f7565b60405160200161247e9291906141cc565b6040516020818303038152906040525b9392505050565b6000806124a061277f565b6124a861276e565b915091509091565b60005473ffffffffffffffffffffffffffffffffffffffff163314612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b600c805463ffffffff928316640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009091169290931691909117919091179055565b6000610a2082613729565b60005473ffffffffffffffffffffffffffffffffffffffff163314612604576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4b565b73ffffffffffffffffffffffffffffffffffffffff81166126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b4b565b6126b081613219565b50565b600080821180156126c657506103e88211155b80156126d35750600a5482105b80610a2057506103e882118015610a20575050600b541190565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006001600a54610d27919061438f565b600060016103e8600b54612793919061438f565b610d27919061438f565b60006127a882612ffe565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128065750336127ee84610ab8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061281857508151612818903361089a565b9050806128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b4b565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610b4b565b73ffffffffffffffffffffffffffffffffffffffff8416612a09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b4b565b612a1960008484600001516126ed565b73ffffffffffffffffffffffffffffffffffffffff85166000908152600560205260408120805460019290612a619084906fffffffffffffffffffffffffffffffff1661435e565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff861660009081526005602052604081208054600194509092612ac3918591166142ca565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600490915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612b8a8460016142f5565b60008181526004602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16612c5d57612bbf816126b3565b15612c5d57604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff908116828501908152600087815260049093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481612d2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b4b565b60006001612d3984846142f5565b612d43919061438f565b9050612d7060017f000000000000000000000000000000000000000000000000000000000000271061438f565b811115612da557612da260017f000000000000000000000000000000000000000000000000000000000000271061438f565b90505b612dae816126b3565b612e3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201527f6c65616e757000000000000000000000000000000000000000000000000000006064820152608401610b4b565b815b818111612f235760008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16612f11576000612e7782612ffe565b604080518082018252825173ffffffffffffffffffffffffffffffffffffffff908116825260209384015167ffffffffffffffff908116858401908152600088815260049096529390942091518254935190941674010000000000000000000000000000000000000000027fffffffff00000000000000000000000000000000000000000000000000000000909316931692909217179055505b80612f1b8161445b565b915050612e3c565b50612f2f8160016142f5565b600855505050565b610d068383836040518060200160405280600081525061381d565b80341015612fbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5461746f6c733a204e65656420746f2073656e64206d6f7265204554482e00006044820152606401610b4b565b803411156126b057336108fc612fd2833461438f565b6040518115909202916000818181858888f19350505050158015612ffa573d6000803e3d6000fd5b5050565b604080518082019091526000808252602082015261301b826126b3565b6130a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b4b565b60007f00000000000000000000000000000000000000000000000000000000000000148310613108576130fa7f00000000000000000000000000000000000000000000000000000000000000148461438f565b6131059060016142f5565b90505b825b8181106131905760008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561317d57949350505050565b5080613188816143d2565b91505061310a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610b4b565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156132f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b4b565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114613352576040519150601f19603f3d011682016040523d82523d6000602084013e613357565b606091505b5050905080610d06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b4b565b600073ffffffffffffffffffffffffffffffffffffffff84163b156135dc576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061345f9033908990889088906004016141fb565b602060405180830381600087803b15801561347957600080fd5b505af19250505080156134c7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526134c491810190614084565b60015b613591573d8080156134f5576040519150601f19603f3d011682016040523d82523d6000602084013e6134fa565b606091505b508051613589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b4b565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506135e0565b5060015b949350505050565b6060600f8054610a3590614407565b60608161363757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613661578061364b8161445b565b915061365a9050600a8361430d565b915061363b565b60008167ffffffffffffffff81111561367c5761367c614535565b6040519080825280601f01601f1916602001820160405280156136a6576020820181803683370190505b5090505b84156135e0576136bb60018361438f565b91506136c8600a86614494565b6136d39060306142f5565b60f81b8183815181106136e8576136e8614506565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613722600a8661430d565b94506136aa565b600073ffffffffffffffffffffffffffffffffffffffff82166137ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610b4b565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff84166138c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b6138c9826126b3565b15613930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b4b565b7f00000000000000000000000000000000000000000000000000000000000000148311156139e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610b4b565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600560209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190613a5f9087906142ca565b6fffffffffffffffffffffffffffffffff168152602001858360200151613a8691906142ca565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260056020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152898352600490955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915583905b85811015613c6f57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4613bc360008884876133e8565b613c4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b4b565b81613c598161445b565b9250508080613c679061445b565b915050613b69565b50612cb9565b828054613c8190614407565b90600052602060002090601f016020900481019282613ca35760008555613d07565b82601f10613cda578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555613d07565b82800160010185558215613d07579182015b82811115613d07578235825591602001919060010190613cec565b506119a39291505b808211156119a35760008155600101613d0f565b803573ffffffffffffffffffffffffffffffffffffffff81168114613d4757600080fd5b919050565b600082601f830112613d5d57600080fd5b81356020613d72613d6d836142a6565b614257565b80838252828201915082860187848660051b8901011115613d9257600080fd5b60005b85811015613db157813584529284019290840190600101613d95565b5090979650505050505050565b803563ffffffff81168114613d4757600080fd5b600060208284031215613de457600080fd5b61248e82613d23565b60008060408385031215613e0057600080fd5b613e0983613d23565b9150613e1760208401613d23565b90509250929050565b600080600060608486031215613e3557600080fd5b613e3e84613d23565b9250613e4c60208501613d23565b9150604084013590509250925092565b60008060008060808587031215613e7257600080fd5b613e7b85613d23565b93506020613e8a818701613d23565b935060408601359250606086013567ffffffffffffffff80821115613eae57600080fd5b818801915088601f830112613ec257600080fd5b813581811115613ed457613ed4614535565b613f04847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601614257565b91508082528984828501011115613f1a57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215613f4d57600080fd5b613f5683613d23565b915060208301358015158114613f6b57600080fd5b809150509250929050565b60008060408385031215613f8957600080fd5b613f9283613d23565b946020939093013593505050565b60008060408385031215613fb357600080fd5b823567ffffffffffffffff80821115613fcb57600080fd5b818501915085601f830112613fdf57600080fd5b81356020613fef613d6d836142a6565b8083825282820191508286018a848660051b890101111561400f57600080fd5b600096505b848710156140395761402581613d23565b835260019690960195918301918301614014565b509650508601359250508082111561405057600080fd5b5061405d85828601613d4c565b9150509250929050565b60006020828403121561407957600080fd5b813561248e81614564565b60006020828403121561409657600080fd5b815161248e81614564565b600080602083850312156140b457600080fd5b823567ffffffffffffffff808211156140cc57600080fd5b818501915085601f8301126140e057600080fd5b8135818111156140ef57600080fd5b86602082850101111561410157600080fd5b60209290920196919550909350505050565b60006020828403121561412557600080fd5b5035919050565b6000806040838503121561413f57600080fd5b61414883613dbe565b9150613e1760208401613dbe565b60008060006060848603121561416b57600080fd5b61417484613dbe565b9250613e4c60208501613dbe565b6000815180845261419a8160208601602086016143a6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516141de8184602088016143a6565b8351908301906141f28183602088016143a6565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261423a6080830184614182565b9695505050505050565b60208152600061248e6020830184614182565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561429e5761429e614535565b604052919050565b600067ffffffffffffffff8211156142c0576142c0614535565b5060051b60200190565b60006fffffffffffffffffffffffffffffffff8083168185168083038211156141f2576141f26144a8565b60008219821115614308576143086144a8565b500190565b60008261431c5761431c6144d7565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614359576143596144a8565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015614387576143876144a8565b039392505050565b6000828210156143a1576143a16144a8565b500390565b60005b838110156143c15781810151838201526020016143a9565b838111156123165750506000910152565b6000816143e1576143e16144a8565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061441b57607f821691505b60208210811415614455577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561448d5761448d6144a8565b5060010190565b6000826144a3576144a36144d7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146126b057600080fdfea2646970667358221220082f028a0849f7e80b0665ff010fd7694960eb887dac657175a624ea541fc41964736f6c63430008060033

Deployed Bytecode Sourcemap

163:7959:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3584:358:3;;;;;;;;;;-1:-1:-1;3584:358:3;;;;;:::i;:::-;;:::i;:::-;;;8461:14:13;;8454:22;8436:41;;8424:2;8409:18;3584:358:3;;;;;;;;5248:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6713:200::-;;;;;;;;;;-1:-1:-1;6713:200:3;;;;;:::i;:::-;;:::i;:::-;;;7725:42:13;7713:55;;;7695:74;;7683:2;7668:18;6713:200:3;7650:125:13;6291:369:3;;;;;;;;;;-1:-1:-1;6291:369:3;;;;;:::i;:::-;;:::i;:::-;;1565:135:12;;;;;;;;;;;;;:::i;:::-;;;22836:25:13;;;22824:2;22809:18;1565:135:12;22791:76:13;8000:120:12;;;;;;;;;;-1:-1:-1;8000:120:12;;;;;:::i;:::-;8095:18;;8069:7;8095:18;;;:9;:18;;;;;;;8000:120;7531:136:3;;;;;;;;;;-1:-1:-1;7531:136:3;;;;;:::i;:::-;;:::i;6355:122:12:-;;;;;;;;;;-1:-1:-1;6355:122:12;;;;;:::i;:::-;;:::i;2804:721:3:-;;;;;;;;;;-1:-1:-1;2804:721:3;;;;;:::i;:::-;;:::i;4338:378:12:-;;;:::i;7725:151:3:-;;;;;;;;;;-1:-1:-1;7725:151:3;;;;;:::i;:::-;;:::i;5508:164:12:-;;;;;;;;;;-1:-1:-1;5508:164:12;;;;;:::i;:::-;;:::i;7115:624::-;;;;;;;;;;-1:-1:-1;7115:624:12;;;;;:::i;:::-;;:::i;3797:535::-;;;;;;:::i;:::-;;:::i;7888:102::-;;;;;;;;;;-1:-1:-1;7888:102:12;;;;;:::i;:::-;;:::i;2346:174:3:-;;;;;;;;;;-1:-1:-1;2346:174:3;;;;;:::i;:::-;;:::i;4955:104:12:-;;;;;;;;;;-1:-1:-1;4955:104:12;;;;;:::i;:::-;;:::i;5078:116:3:-;;;;;;;;;;-1:-1:-1;5078:116:3;;;;;:::i;:::-;;:::i;594:34:12:-;;;;;;;;;;;;;;;3993:208:3;;;;;;;;;;-1:-1:-1;3993:208:3;;;;;:::i;:::-;;:::i;582:101:9:-;;;;;;;;;;;;;:::i;532:55:12:-;;;;;;;;;;;;;;;;6483:626;;;;;;;;;;-1:-1:-1;6483:626:12;;;;;:::i;:::-;;:::i;368:85:9:-;;;;;;;;;;-1:-1:-1;414:7:9;440:6;;;368:85;;742:28:12;;;;;;;;;;-1:-1:-1;742:28:12;;;;;;;;;;;;;;;;;;;;;;;23333:10:13;23370:15;;;23352:34;;23422:15;;;;23417:2;23402:18;;23395:43;23454:18;;;23447:34;23311:2;23296:18;742:28:12;23278:209:13;7745:133:12;;;;;;;;;;-1:-1:-1;7745:133:12;;;;;:::i;:::-;;:::i;:::-;;;;22532:13:13;;22547:42;22528:62;22510:81;;22651:4;22639:17;;;22633:24;22659:18;22629:49;22607:20;;;22600:79;;;;22483:18;7745:133:12;22465:220:13;5396:96:3;;;;;;;;;;;;;:::i;6972:269::-;;;;;;;;;;-1:-1:-1;6972:269:3;;;;;:::i;:::-;;:::i;777:44:12:-;;;;;;;;;;-1:-1:-1;777:44:12;;;;;:::i;:::-;;;;;;;;;;;;;;6098:134;;;;;;;;;;;;;:::i;5175:327::-;;;;;;;;;;-1:-1:-1;5175:327:12;;;;;:::i;:::-;;:::i;7934:300:3:-;;;;;;;;;;-1:-1:-1;7934:300:3;;;;;:::i;:::-;;:::i;486:40:12:-;;;;;;;;;;;;;;;;5979:113;;;;;;;;;;-1:-1:-1;5979:113:12;;;;;:::i;:::-;;:::i;5550:377:3:-;;;;;;;;;;-1:-1:-1;5550:377:3;;;;;:::i;:::-;;:::i;1706:138:12:-;;;;;;;;;;;;;:::i;:::-;;;;23046:25:13;;;23102:2;23087:18;;23080:34;;;;23019:18;1706:138:12;23001:119:13;5845:128:12;;;;;;;;;;-1:-1:-1;5925:10:12;:20;;;;;;5947:18;;;;5845:128;;5678:161;;;;;;;;;;-1:-1:-1;5678:161:12;;;;;:::i;:::-;;:::i;12282:43:3:-;;;;;;;;;;;;;;;;6238:111:12;;;;;;;;;;-1:-1:-1;6238:111:12;;;;;:::i;:::-;;:::i;7299:178:3:-;;;;;;;;;;-1:-1:-1;7299:178:3;;;;;:::i;:::-;7437:25;;;;7416:4;7437:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7299:178;689:198:9;;;;;;;;;;-1:-1:-1;689:198:9;;;;;:::i;:::-;;:::i;3584:358:3:-;3706:4;3733:40;;;3748:25;3733:40;;:98;;-1:-1:-1;3783:48:3;;;3798:33;3783:48;3733:98;:158;;;-1:-1:-1;3841:50:3;;;3856:35;3841:50;3733:158;:204;;;-1:-1:-1;375:25:2;360:40;;;;3901:36:3;3720:217;3584:358;-1:-1:-1;;3584:358:3:o;5248:92::-;5302:13;5330:5;5323:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5248:92;:::o;6713:200::-;6781:7;6804:16;6812:7;6804;:16::i;:::-;6796:74;;;;;;;20859:2:13;6796:74:3;;;20841:21:13;20898:2;20878:18;;;20871:30;20937:34;20917:18;;;20910:62;21008:15;20988:18;;;20981:43;21041:19;;6796:74:3;;;;;;;;;-1:-1:-1;6884:24:3;;;;:15;:24;;;;;;;;;6713:200::o;6291:369::-;6359:13;6375:24;6391:7;6375:15;:24::i;:::-;6359:40;;6419:5;6413:11;;:2;:11;;;;6405:58;;;;;;;17323:2:13;6405:58:3;;;17305:21:13;17362:2;17342:18;;;17335:30;17401:34;17381:18;;;17374:62;17472:4;17452:18;;;17445:32;17494:19;;6405:58:3;17295:224:13;6405:58:3;222:10:1;6485:21:3;;;;;:62;;-1:-1:-1;6510:37:3;6527:5;222:10:1;7299:178:3;:::i;6510:37::-;6470:150;;;;;;;13398:2:13;6470:150:3;;;13380:21:13;13437:2;13417:18;;;13410:30;13476:34;13456:18;;;13449:62;13547:27;13527:18;;;13520:55;13592:19;;6470:150:3;13370:247:13;6470:150:3;6627:28;6636:2;6640:7;6649:5;6627:8;:28::i;:::-;6353:307;6291:369;;:::o;1565:135:12:-;1618:7;1669:24;:22;:24::i;:::-;1644:22;:20;:22::i;:::-;:49;;;;:::i;:::-;1637:56;;1565:135;:::o;7531:136:3:-;7634:28;7644:4;7650:2;7654:7;7634:9;:28::i;6355:122:12:-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;246:1:10::1;456:7;;:19;;448:63;;;::::0;::::1;::::0;;19728:2:13;448:63:10::1;::::0;::::1;19710:21:13::0;19767:2;19747:18;;;19740:30;19806:33;19786:18;;;19779:61;19857:18;;448:63:10::1;19700:181:13::0;448:63:10::1;246:1;586:7;:18:::0;6442:28:12::2;6461:8:::0;6442:18:::2;:28::i;:::-;-1:-1:-1::0;203:1:10::1;759:7;:22:::0;6355:122:12:o;2804:721:3:-;2909:7;2942:16;2952:5;2942:9;:16::i;:::-;2934:5;:24;2926:71;;;;;;;8914:2:13;2926:71:3;;;8896:21:13;8953:2;8933:18;;;8926:30;8992:34;8972:18;;;8965:62;9063:4;9043:18;;;9036:32;9085:19;;2926:71:3;8886:224:13;2926:71:3;3003:22;3028:13;:11;:13::i;:::-;3003:38;;3047:19;3076:25;3125:9;3120:339;3144:14;3140:1;:18;3120:339;;;3173:31;3207:14;;;:11;:14;;;;;;;;;3173:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;3233:28;3229:87;;3293:14;;;-1:-1:-1;3229:87:3;3348:5;3327:26;;:17;:26;;;3323:130;;;3384:5;3369:11;:20;3365:57;;;-1:-1:-1;3410:1:3;-1:-1:-1;3403:8:3;;-1:-1:-1;;;3403:8:3;3365:57;3431:13;;;;:::i;:::-;;;;3323:130;-1:-1:-1;3160:3:3;;;;:::i;:::-;;;;3120:339;;;-1:-1:-1;3464:56:3;;;;;18906:2:13;3464:56:3;;;18888:21:13;18945:2;18925:18;;;18918:30;18984:34;18964:18;;;18957:62;19055:16;19035:18;;;19028:44;19089:19;;3464:56:3;18878:236:13;4338:378:12;1247:9;1260:10;1247:23;1239:74;;;;;;;21694:2:13;1239:74:12;;;21676:21:13;21733:2;21713:18;;;21706:30;21772:34;21752:18;;;21745:62;21843:8;21823:18;;;21816:36;21869:19;;1239:74:12;21666:228:13;1239:74:12;1416:10:::1;:20:::0;::::1;;1389:15;:48;::::0;::::1;::::0;:110:::1;;-1:-1:-1::0;1480:10:12::1;:18:::0;;;::::1;;;1453:15;:46;;1389:110;1368:173;;;::::0;::::1;::::0;;12687:2:13;1368:173:12::1;::::0;::::1;12669:21:13::0;12726:2;12706:18;;;12699:30;12765:26;12745:18;;;12738:54;12809:18;;1368:173:12::1;12659:174:13::0;1368:173:12::1;4431:10:::2;4445:1;4421:21:::0;;;:9:::2;:21;::::0;;;;;4413:77:::2;;;::::0;::::2;::::0;;12279:2:13;4413:77:12::2;::::0;::::2;12261:21:13::0;12318:2;12298:18;;;12291:30;12357:34;12337:18;;;12330:62;12428:9;12408:18;;;12401:37;12455:19;;4413:77:12::2;12251:229:13::0;4413:77:12::2;297:4;4508:24;:22;:24::i;:::-;:28;::::0;4535:1:::2;4508:28;:::i;:::-;:46;;4500:85;;;::::0;::::2;::::0;;20504:2:13;4500:85:12::2;::::0;::::2;20486:21:13::0;20543:2;20523:18;;;20516:30;20582:28;20562:18;;;20555:56;20628:18;;4500:85:12::2;20476:176:13::0;4500:85:12::2;4605:10;4595:21;::::0;;;:9:::2;:21;::::0;;;;:23;;;::::2;::::0;::::2;:::i;:::-;;;;;;4628:47;4638:10;4650:1;4653:21;;4628:9;:47::i;:::-;4685:21;:24:::0;;;:21:::2;:24;::::0;::::2;:::i;:::-;;;;;;4338:378::o:0;7725:151:3:-;7832:39;7849:4;7855:2;7859:7;7832:39;;;;;;;;;;;;:16;:39::i;5508:164:12:-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;5624:41:12::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;::::1;;::::0;::::1;::::0;;;;;;;;5611:10:::1;:54:::0;;;;;;;;;;::::1;::::0;;;::::1;::::0;;;;5508:164::o;7115:624::-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;347:4:12::1;7232:8;7207:22;:20;:22::i;:::-;:33;;;;:::i;:::-;:49;;7186:168;;;::::0;::::1;::::0;;9317:2:13;7186:168:12::1;::::0;::::1;9299:21:13::0;9356:2;9336:18;;;9329:30;9395:34;9375:18;;;9368:62;9466:34;9446:18;;;9439:62;9538:18;9517:19;;;9510:47;9574:19;;7186:168:12::1;9289:310:13::0;7186:168:12::1;7394:23;7405:12;7394:8:::0;:23:::1;:::i;:::-;:28:::0;7373:118:::1;;;::::0;::::1;::::0;;21273:2:13;7373:118:12::1;::::0;::::1;21255:21:13::0;21312:2;21292:18;;;21285:30;21351:34;21331:18;;;21324:62;21422:22;21402:18;;;21395:50;21462:19;;7373:118:12::1;21245:242:13::0;7373:118:12::1;7510:17;7530:23;7541:12;7530:8:::0;:23:::1;:::i;:::-;7510:43;;7568:9;7563:170;7587:9;7583:1;:13;7563:170;;;7617:56;7627:10;7639:12;7653:19;;7617:9;:56::i;:::-;7710:12;7687:19;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;7598:3:12;;-1:-1:-1;7598:3:12::1;::::0;::::1;:::i;:::-;;;;7563:170;;3797:535:::0;1247:9;1260:10;1247:23;1239:74;;;;;;;21694:2:13;1239:74:12;;;21676:21:13;21733:2;21713:18;;;21706:30;21772:34;21752:18;;;21745:62;21843:8;21823:18;;;21816:36;21869:19;;1239:74:12;21666:228:13;1239:74:12;1416:10:::1;:20:::0;::::1;;1389:15;:48;::::0;::::1;::::0;:110:::1;;-1:-1:-1::0;1480:10:12::1;:18:::0;;;::::1;;;1453:15;:46;;1389:110;1368:173;;;::::0;::::1;::::0;;12687:2:13;1368:173:12::1;::::0;::::1;12669:21:13::0;12726:2;12706:18;;;12699:30;12765:26;12745:18;;;12738:54;12809:18;;1368:173:12::1;12659:174:13::0;1368:173:12::1;347:4:::2;3932:8;3907:22;:20;:22::i;:::-;:33;;;;:::i;:::-;:49;;3886:167;;;::::0;::::2;::::0;;9317:2:13;3886:167:12::2;::::0;::::2;9299:21:13::0;9356:2;9336:18;;;9329:30;9395:34;9375:18;;;9368:62;9466:34;9446:18;;;9439:62;9538:18;9517:19;;;9510:47;9574:19;;3886:167:12::2;9289:310:13::0;3886:167:12::2;4100:20:::0;;4072:17:::2;::::0;4092:40:::2;::::0;4124:8;;4092:40:::2;:::i;:::-;4072:60;;4142:52;4152:10;4164:8;4174:19;;4142:9;:52::i;:::-;4227:8;4204:19;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;4245:23:12::2;::::0;-1:-1:-1;4258:9:12;4245:12:::2;:23::i;:::-;4287:38;::::0;:27:::2;4295:9;4287:27;::::0;:38;::::2;;;::::0;4315:9;;4287:38:::2;::::0;;;4315:9;4287:27;:38;::::2;;;;;;;;;;;;;::::0;::::2;;;;7888:102:::0;7944:4;7967:16;7975:7;7967;:16::i;2346:174:3:-;2413:7;2444:13;:11;:13::i;:::-;2436:5;:21;2428:69;;;;;;;10624:2:13;2428:69:3;;;10606:21:13;10663:2;10643:18;;;10636:30;10702:34;10682:18;;;10675:62;10773:5;10753:18;;;10746:33;10796:19;;2428:69:3;10596:225:13;2428:69:3;-1:-1:-1;2510:5:3;2346:174::o;4955:104:12:-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;5029:23:12::1;:13;5045:7:::0;;5029:23:::1;:::i;5078:116:3:-:0;5142:7;5164:20;5176:7;5164:11;:20::i;:::-;:25;;5078:116;-1:-1:-1;;5078:116:3:o;3993:208::-;4057:7;4080:19;;;4072:75;;;;;;;14177:2:13;4072:75:3;;;14159:21:13;14216:2;14196:18;;;14189:30;14255:34;14235:18;;;14228:62;14326:13;14306:18;;;14299:41;14357:19;;4072:75:3;14149:233:13;4072:75:3;-1:-1:-1;4168:19:3;;;;;;:12;:19;;;;;:27;;;;3993:208::o;582:101:9:-;414:7;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;646:30:::1;673:1;646:18;:30::i;:::-;582:101::o:0;6483:626:12:-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;297:4:12::1;6604:8;6577:24;:22;:24::i;:::-;:35;;;;:::i;:::-;:53;;6556:172;;;::::0;::::1;::::0;;9317:2:13;6556:172:12::1;::::0;::::1;9299:21:13::0;9356:2;9336:18;;;9329:30;9395:34;9375:18;;;9368:62;9466:34;9446:18;;;9439:62;9538:18;9517:19;;;9510:47;9574:19;;6556:172:12::1;9289:310:13::0;6556:172:12::1;6768:23;6779:12;6768:8:::0;:23:::1;:::i;:::-;:28:::0;6747:118:::1;;;::::0;::::1;::::0;;21273:2:13;6747:118:12::1;::::0;::::1;21255:21:13::0;21312:2;21292:18;;;21285:30;21351:34;21331:18;;;21324:62;21422:22;21402:18;;;21395:50;21462:19;;6747:118:12::1;21245:242:13::0;6747:118:12::1;6876:17;6896:23;6907:12;6896:8:::0;:23:::1;:::i;:::-;6876:43;;6934:9;6929:174;6953:9;6949:1;:13;6929:174;;;6983:58;6993:10;7005:12;7019:21;;6983:9;:58::i;:::-;7080:12;7055:21;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;6964:3:12;;-1:-1:-1;6964:3:12::1;::::0;::::1;:::i;:::-;;;;6929:174;;7745:133:::0;-1:-1:-1;;;;;;;;;;;;;;;;;7851:20:12;7863:7;7851:11;:20::i;5396:96:3:-;5452:13;5480:7;5473:14;;;;;:::i;6972:269::-;7062:24;;;222:10:1;7062:24:3;;7054:63;;;;;;;16132:2:13;7054:63:3;;;16114:21:13;16171:2;16151:18;;;16144:30;16210:28;16190:18;;;16183:56;16256:18;;7054:63:3;16104:176:13;7054:63:3;222:10:1;7124:32:3;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;7188:48;;8436:41:13;;;7124:42:3;;222:10:1;7188:48:3;;8409:18:13;7188:48:3;;;;;;;6972:269;;:::o;6098:134:12:-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;246:1:10::1;456:7;;:19;;448:63;;;::::0;::::1;::::0;;19728:2:13;448:63:10::1;::::0;::::1;19710:21:13::0;19767:2;19747:18;;;19740:30;19806:33;19786:18;;;19779:61;19857:18;;448:63:10::1;19700:181:13::0;448:63:10::1;246:1;586:7;:18:::0;6165:60:12::2;6191:9;6203:21;6165:17;:60::i;:::-;203:1:10::1;759:7;:22:::0;6098:134:12:o;5175:327::-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;5310:8:12::1;:15;5290:9;:16;:35;5282:95;;;::::0;::::1;::::0;;16906:2:13;5282:95:12::1;::::0;::::1;16888:21:13::0;16945:2;16925:18;;;16918:30;16984:34;16964:18;;;16957:62;17055:18;17035;;;17028:46;17091:19;;5282:95:12::1;16878:238:13::0;5282:95:12::1;5392:9;5387:109;5411:9;:16;5407:1;:20;5387:109;;;5474:8;5483:1;5474:11;;;;;;;;:::i;:::-;;;;;;;5448:9;:23;5458:9;5468:1;5458:12;;;;;;;;:::i;:::-;;;;;;;5448:23;;;;;;;;;;;;;;;:37;;;;5429:3;;;;;:::i;:::-;;;;5387:109;;7934:300:3::0;8065:28;8075:4;8081:2;8085:7;8065:9;:28::i;:::-;8114:48;8137:4;8143:2;8147:7;8156:5;8114:22;:48::i;:::-;8099:130;;;;;;;17726:2:13;8099:130:3;;;17708:21:13;17765:2;17745:18;;;17738:30;17804:34;17784:18;;;17777:62;17875:21;17855:18;;;17848:49;17914:19;;8099:130:3;17698:241:13;8099:130:3;7934:300;;;;:::o;5979:113:12:-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;6053:20:12;:32;5979:113::o;5550:377:3:-;5643:13;5681:16;5689:7;5681;:16::i;:::-;5666:94;;;;;;;15716:2:13;5666:94:3;;;15698:21:13;15755:2;15735:18;;;15728:30;15794:34;15774:18;;;15767:62;15865:17;15845:18;;;15838:45;15900:19;;5666:94:3;15688:237:13;5666:94:3;5767:21;5791:10;:8;:10::i;:::-;5767:34;;5844:1;5826:7;5820:21;:25;:102;;;;;;;;;;;;;;;;;5880:7;5889:18;:7;:16;:18::i;:::-;5863:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5820:102;5807:115;5550:377;-1:-1:-1;;;5550:377:3:o;1706:138:12:-;1753:7;1762;1789:22;:20;:22::i;:::-;1812:24;:22;:24::i;:::-;1781:56;;;;1706:138;;:::o;5678:161::-;414:7:9;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;5762:10:12::1;:32:::0;;::::1;5804:28:::0;;::::1;::::0;::::1;::::0;;;;5762:32;;;::::1;5804:28:::0;;;;;;;::::1;::::0;;5678:161::o;6238:111::-;6296:7;6322:20;6336:5;6322:13;:20::i;689:198:9:-;414:7;440:6;498:23;440:6;222:10:1;498:23:9;490:68;;;;;;;14996:2:13;490:68:9;;;14978:21:13;;;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;15126:18;;490:68:9;14968:182:13;490:68:9;777:22:::1;::::0;::::1;769:73;;;::::0;::::1;::::0;;9806:2:13;769:73:9::1;::::0;::::1;9788:21:13::0;9845:2;9825:18;;;9818:30;9884:34;9864:18;;;9857:62;9955:8;9935:18;;;9928:36;9981:19;;769:73:9::1;9778:228:13::0;769:73:9::1;852:28;871:8;852:18;:28::i;:::-;689:198:::0;:::o;2103:261:12:-;2169:4;2216:1;2206:7;:11;:40;;;;;297:4;2221:7;:25;;2206:40;:75;;;;;2260:21;;2250:7;:31;2206:75;2205:152;;;;297:4;2299:7;:24;:57;;;;-1:-1:-1;;2337:19:12;;-1:-1:-1;2327:29:12;2103:261::o;12113:165:3:-;12205:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;12245:28;;12205:24;;12245:28;;;;;;;12113:165;;;:::o;1983:114:12:-;2039:7;2089:1;2065:21;;:25;;;;:::i;1850:127::-;1904:7;1969:1;297:4;1930:19;;:36;;;;:::i;:::-;:40;;;;:::i;10530:1484:3:-;10622:35;10660:20;10672:7;10660:11;:20::i;:::-;10729:18;;10622:58;;-1:-1:-1;10687:22:3;;10713:34;;222:10:1;10713:34:3;;;:80;;;-1:-1:-1;222:10:1;10757:20:3;10769:7;10757:11;:20::i;:::-;:36;;;10713:80;:140;;;-1:-1:-1;10820:18:3;;10803:50;;222:10:1;7299:178:3;:::i;10803:50::-;10687:167;;10876:17;10861:98;;;;;;;16487:2:13;10861:98:3;;;16469:21:13;16526:2;16506:18;;;16499:30;16565:34;16545:18;;;16538:62;16636:20;16616:18;;;16609:48;16674:19;;10861:98:3;16459:240:13;10861:98:3;11003:4;10981:26;;:13;:18;;;:26;;;10966:95;;;;;;;14589:2:13;10966:95:3;;;14571:21:13;14628:2;14608:18;;;14601:30;14667:34;14647:18;;;14640:62;14738:8;14718:18;;;14711:36;14764:19;;10966:95:3;14561:228:13;10966:95:3;11075:16;;;11067:66;;;;;;;11028:2:13;11067:66:3;;;11010:21:13;11067:2;11047:18;;;11040:30;11106:34;11086:18;;;11079:62;11177:7;11157:18;;;11150:35;11202:19;;11067:66:3;11000:227:13;11067:66:3;11237:49;11254:1;11258:7;11267:13;:18;;;11237:8;:49::i;:::-;11293:18;;;;;;;:12;:18;;;;;:31;;11323:1;;11293:18;:31;;11323:1;;11293:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;11330:16;;;-1:-1:-1;11330:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11330:16:3;;:29;;-1:-1:-1;;11330:29:3;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11388:43:3;;;;;;;;;;;;;;;11414:15;11388:43;;;;;;;;;-1:-1:-1;11365:20:3;;;:11;:20;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;11677:11;11377:7;-1:-1:-1;11677:11:3;:::i;:::-;11739:1;11698:24;;;:11;:24;;;;;:29;11655:33;;-1:-1:-1;11698:43:3;:29;11694:229;;11755:20;11763:11;11755:7;:20::i;:::-;11751:166;;;11814:94;;;;;;;;11840:18;;11814:94;;;;;;;11870:28;;;;11814:94;;;;;;;;;;-1:-1:-1;11787:24:3;;;:11;:24;;;;;;;:121;;;;;;;;;;;;;;;;;;;;;;;;11751:166;11953:7;11949:2;11934:27;;11943:4;11934:27;;;;;;;;;;;;11967:42;10616:1398;;;10530:1484;;;:::o;12425:827::-;12514:24;;12552:12;12544:49;;;;;;;13824:2:13;12544:49:3;;;13806:21:13;13863:2;13843:18;;;13836:30;13902:26;13882:18;;;13875:54;13946:18;;12544:49:3;13796:174:13;12544:49:3;12599:16;12649:1;12618:28;12638:8;12618:17;:28;:::i;:::-;:32;;;;:::i;:::-;12599:51;-1:-1:-1;12671:18:3;12688:1;12671:14;:18;:::i;:::-;12660:8;:29;12656:79;;;12710:18;12727:1;12710:14;:18;:::i;:::-;12699:29;;12656:79;12848:17;12856:8;12848:7;:17::i;:::-;12840:68;;;;;;;19321:2:13;12840:68:3;;;19303:21:13;19360:2;19340:18;;;19333:30;19399:34;19379:18;;;19372:62;19470:8;19450:18;;;19443:36;19496:19;;12840:68:3;19293:228:13;12840:68:3;12931:17;12914:289;12955:8;12950:1;:13;12914:289;;13013:1;12982:14;;;:11;:14;;;;;:19;:33;:19;12978:219;;13027:31;13061:14;13073:1;13061:11;:14::i;:::-;13102:86;;;;;;;;13128:14;;13102:86;;;;;;;13154:24;;;;13102:86;;;;;;;;;;-1:-1:-1;13085:14:3;;;:11;:14;;;;;;;:103;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12978:219:3;12965:3;;;;:::i;:::-;;;;12914:289;;;-1:-1:-1;13235:12:3;:8;13246:1;13235:12;:::i;:::-;13208:24;:39;-1:-1:-1;;;12425:827:3:o;2370:138:12:-;2460:41;2470:2;2474:8;2484:12;2460:41;;;;;;;;;;;;:9;:41::i;4722:227::-;4798:5;4785:9;:18;;4777:61;;;;;;;15357:2:13;4777:61:12;;;15339:21:13;15396:2;15376:18;;;15369:30;15435:32;15415:18;;;15408:60;15485:18;;4777:61:12;15329:180:13;4777:61:12;4864:5;4852:9;:17;4848:95;;;4893:10;4885:47;4914:17;4926:5;4914:9;:17;:::i;:::-;4885:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4722:227;:::o;4443:586:3:-;-1:-1:-1;;;;;;;;;;;;;;;;;4555:16:3;4563:7;4555;:16::i;:::-;4547:71;;;;;;;10213:2:13;4547:71:3;;;10195:21:13;10252:2;10232:18;;;10225:30;10291:34;10271:18;;;10264:62;10362:12;10342:18;;;10335:40;10392:19;;4547:71:3;10185:232:13;4547:71:3;4625:26;4672:12;4661:7;:23;4657:91;;4715:22;4725:12;4715:7;:22;:::i;:::-;:26;;4740:1;4715:26;:::i;:::-;4694:47;;4657:91;4774:7;4754:207;4791:18;4783:4;:26;4754:207;;4827:31;4861:17;;;:11;:17;;;;;;;;;4827:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;4890:28;4886:69;;4937:9;4443:586;-1:-1:-1;;;;4443:586:3:o;4886:69::-;-1:-1:-1;4811:6:3;;;;:::i;:::-;;;;4754:207;;;-1:-1:-1;4967:57:3;;;;;20088:2:13;4967:57:3;;;20070:21:13;20127:2;20107:18;;;20100:30;20166:34;20146:18;;;20139:62;20237:17;20217:18;;;20210:45;20272:19;;4967:57:3;20060:237:13;893:187:9;966:16;985:6;;;1001:17;;;;;;;;;;1033:40;;985:6;;;;;;;1033:40;;966:16;1033:40;956:124;893:187;:::o;542:312:0:-;656:6;631:21;:31;;623:73;;;;;;;13040:2:13;623:73:0;;;13022:21:13;13079:2;13059:18;;;13052:30;13118:31;13098:18;;;13091:59;13167:18;;623:73:0;13012:179:13;623:73:0;708:12;726:9;:14;;748:6;726:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;707:52;;;777:7;769:78;;;;;;;11852:2:13;769:78:0;;;11834:21:13;11891:2;11871:18;;;11864:30;11930:34;11910:18;;;11903:62;12001:28;11981:18;;;11974:56;12047:19;;769:78:0;11824:248:13;13783:668:3;13916:4;13932:13;;;506:19:0;:23;13928:519:3;;13969:72;;;;;:36;;;;;;:72;;222:10:1;;14020:4:3;;14026:7;;14035:5;;13969:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13969:72:3;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;13957:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14196:13:3;;14192:209;;14228:61;;;;;17726:2:13;14228:61:3;;;17708:21:13;17765:2;17745:18;;;17738:30;17804:34;17784:18;;;17777:62;17875:21;17855:18;;;17848:49;17914:19;;14228:61:3;17698:241:13;14192:209:3;14371:6;14365:13;14356:6;14352:2;14348:15;14341:38;13957:452;14089:55;;14099:45;14089:55;;-1:-1:-1;14082:62:3;;13928:519;-1:-1:-1;14436:4:3;13928:519;13783:668;;;;;;:::o;5065:104:12:-;5117:13;5149;5142:20;;;;;:::i;328:703:11:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:11;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:11;;-1:-1:-1;773:2:11;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:11;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:11;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:11;981:2;972:11;;:::i;:::-;;;844:150;;4205:234:3;4266:7;4296:19;;;4281:99;;;;;;;11434:2:13;4281:99:3;;;11416:21:13;11473:2;11453:18;;;11446:30;11512:34;11492:18;;;11485:62;11583:19;11563:18;;;11556:47;11620:19;;4281:99:3;11406:239:13;4281:99:3;-1:-1:-1;4401:19:3;;;;;;:12;:19;;;;;:32;;;;;;;4205:234::o;2514:1277:12:-;2632:16;;;2624:62;;;;;;;18504:2:13;2624:62:12;;;18486:21:13;18543:2;18523:18;;;18516:30;18582:34;18562:18;;;18555:62;18653:3;18633:18;;;18626:31;18674:19;;2624:62:12;18476:223:13;2624:62:12;2829:21;2837:12;2829:7;:21::i;:::-;2828:22;2820:64;;;;;;;18146:2:13;2820:64:12;;;18128:21:13;18185:2;18165:18;;;18158:30;18224:31;18204:18;;;18197:59;18273:18;;2820:64:12;18118:179:13;2820:64:12;2914:12;2902:8;:24;;2894:71;;;;;;;22101:2:13;2894:71:12;;;22083:21:13;22140:2;22120:18;;;22113:30;22179:34;22159:18;;;22152:62;22250:4;22230:18;;;22223:32;22272:19;;2894:71:12;22073:224:13;2894:71:12;3081:16;;;3048:30;3081:16;;;:12;:16;;;;;;;;;3048:49;;;;;;;;;;;;;;;;;;;;;;;;;;;3126:132;;;;;;;;3151:19;;3048:49;;3126:132;;;3151:39;;3181:8;;3151:39;:::i;:::-;3126:132;;;;;;3239:8;3204:11;:24;;;:44;;;;:::i;:::-;3126:132;;;;;;;3107:16;;;;;;;;:12;:16;;;;;;;;:151;;;;;;;;;;;;;;;;;;;;;3297:43;;;;;;;;;;;3323:15;3297:43;;;;;;;;3269:25;;;:11;:25;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3281:12;;3396:318;3420:8;3416:1;:12;3396:318;;;3454:38;;3479:12;;3454:38;;;;3471:1;;3454:38;;3471:1;;3454:38;3531:59;3562:1;3566:2;3570:12;3584:5;3531:22;:59::i;:::-;3506:169;;;;;;;17726:2:13;3506:169:12;;;17708:21:13;17765:2;17745:18;;;17738:30;17804:34;17784:18;;;17777:62;17875:21;17855:18;;;17848:49;17914:19;;3506:169:12;17698:241:13;3506:169:12;3689:14;;;;:::i;:::-;;;;3430:3;;;;;:::i;:::-;;;;3396:318;;;;3724:60;7934:300:3;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:13;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:673::-;269:5;322:3;315:4;307:6;303:17;299:27;289:2;;340:1;337;330:12;289:2;376:6;363:20;402:4;426:60;442:43;482:2;442:43;:::i;:::-;426:60;:::i;:::-;508:3;532:2;527:3;520:15;560:2;555:3;551:12;544:19;;595:2;587:6;583:15;647:3;642:2;636;633:1;629:10;621:6;617:23;613:32;610:41;607:2;;;664:1;661;654:12;607:2;686:1;696:163;710:2;707:1;704:9;696:163;;;767:17;;755:30;;805:12;;;;837;;;;728:1;721:9;696:163;;;-1:-1:-1;877:5:13;;279:609;-1:-1:-1;;;;;;;279:609:13:o;893:163::-;960:20;;1020:10;1009:22;;999:33;;989:2;;1046:1;1043;1036:12;1061:186;1120:6;1173:2;1161:9;1152:7;1148:23;1144:32;1141:2;;;1189:1;1186;1179:12;1141:2;1212:29;1231:9;1212:29;:::i;1252:260::-;1320:6;1328;1381:2;1369:9;1360:7;1356:23;1352:32;1349:2;;;1397:1;1394;1387:12;1349:2;1420:29;1439:9;1420:29;:::i;:::-;1410:39;;1468:38;1502:2;1491:9;1487:18;1468:38;:::i;:::-;1458:48;;1339:173;;;;;:::o;1517:328::-;1594:6;1602;1610;1663:2;1651:9;1642:7;1638:23;1634:32;1631:2;;;1679:1;1676;1669:12;1631:2;1702:29;1721:9;1702:29;:::i;:::-;1692:39;;1750:38;1784:2;1773:9;1769:18;1750:38;:::i;:::-;1740:48;;1835:2;1824:9;1820:18;1807:32;1797:42;;1621:224;;;;;:::o;1850:1039::-;1945:6;1953;1961;1969;2022:3;2010:9;2001:7;1997:23;1993:33;1990:2;;;2039:1;2036;2029:12;1990:2;2062:29;2081:9;2062:29;:::i;:::-;2052:39;;2110:2;2131:38;2165:2;2154:9;2150:18;2131:38;:::i;:::-;2121:48;;2216:2;2205:9;2201:18;2188:32;2178:42;;2271:2;2260:9;2256:18;2243:32;2294:18;2335:2;2327:6;2324:14;2321:2;;;2351:1;2348;2341:12;2321:2;2389:6;2378:9;2374:22;2364:32;;2434:7;2427:4;2423:2;2419:13;2415:27;2405:2;;2456:1;2453;2446:12;2405:2;2492;2479:16;2514:2;2510;2507:10;2504:2;;;2520:18;;:::i;:::-;2562:112;2670:2;2601:66;2594:4;2590:2;2586:13;2582:86;2578:95;2562:112;:::i;:::-;2549:125;;2697:2;2690:5;2683:17;2737:7;2732:2;2727;2723;2719:11;2715:20;2712:33;2709:2;;;2758:1;2755;2748:12;2709:2;2813;2808;2804;2800:11;2795:2;2788:5;2784:14;2771:45;2857:1;2852:2;2847;2840:5;2836:14;2832:23;2825:34;;2878:5;2868:15;;;;;1980:909;;;;;;;:::o;2894:347::-;2959:6;2967;3020:2;3008:9;2999:7;2995:23;2991:32;2988:2;;;3036:1;3033;3026:12;2988:2;3059:29;3078:9;3059:29;:::i;:::-;3049:39;;3138:2;3127:9;3123:18;3110:32;3185:5;3178:13;3171:21;3164:5;3161:32;3151:2;;3207:1;3204;3197:12;3151:2;3230:5;3220:15;;;2978:263;;;;;:::o;3246:254::-;3314:6;3322;3375:2;3363:9;3354:7;3350:23;3346:32;3343:2;;;3391:1;3388;3381:12;3343:2;3414:29;3433:9;3414:29;:::i;:::-;3404:39;3490:2;3475:18;;;;3462:32;;-1:-1:-1;;;3333:167:13:o;3505:1157::-;3623:6;3631;3684:2;3672:9;3663:7;3659:23;3655:32;3652:2;;;3700:1;3697;3690:12;3652:2;3740:9;3727:23;3769:18;3810:2;3802:6;3799:14;3796:2;;;3826:1;3823;3816:12;3796:2;3864:6;3853:9;3849:22;3839:32;;3909:7;3902:4;3898:2;3894:13;3890:27;3880:2;;3931:1;3928;3921:12;3880:2;3967;3954:16;3989:4;4013:60;4029:43;4069:2;4029:43;:::i;4013:60::-;4095:3;4119:2;4114:3;4107:15;4147:2;4142:3;4138:12;4131:19;;4178:2;4174;4170:11;4226:7;4221:2;4215;4212:1;4208:10;4204:2;4200:19;4196:28;4193:41;4190:2;;;4247:1;4244;4237:12;4190:2;4269:1;4260:10;;4279:169;4293:2;4290:1;4287:9;4279:169;;;4350:23;4369:3;4350:23;:::i;:::-;4338:36;;4311:1;4304:9;;;;;4394:12;;;;4426;;4279:169;;;-1:-1:-1;4467:5:13;-1:-1:-1;;4510:18:13;;4497:32;;-1:-1:-1;;4541:16:13;;;4538:2;;;4570:1;4567;4560:12;4538:2;;4593:63;4648:7;4637:8;4626:9;4622:24;4593:63;:::i;:::-;4583:73;;;3642:1020;;;;;:::o;4667:245::-;4725:6;4778:2;4766:9;4757:7;4753:23;4749:32;4746:2;;;4794:1;4791;4784:12;4746:2;4833:9;4820:23;4852:30;4876:5;4852:30;:::i;4917:249::-;4986:6;5039:2;5027:9;5018:7;5014:23;5010:32;5007:2;;;5055:1;5052;5045:12;5007:2;5087:9;5081:16;5106:30;5130:5;5106:30;:::i;5171:592::-;5242:6;5250;5303:2;5291:9;5282:7;5278:23;5274:32;5271:2;;;5319:1;5316;5309:12;5271:2;5359:9;5346:23;5388:18;5429:2;5421:6;5418:14;5415:2;;;5445:1;5442;5435:12;5415:2;5483:6;5472:9;5468:22;5458:32;;5528:7;5521:4;5517:2;5513:13;5509:27;5499:2;;5550:1;5547;5540:12;5499:2;5590;5577:16;5616:2;5608:6;5605:14;5602:2;;;5632:1;5629;5622:12;5602:2;5677:7;5672:2;5663:6;5659:2;5655:15;5651:24;5648:37;5645:2;;;5698:1;5695;5688:12;5645:2;5729;5721:11;;;;;5751:6;;-1:-1:-1;5261:502:13;;-1:-1:-1;;;;5261:502:13:o;5768:180::-;5827:6;5880:2;5868:9;5859:7;5855:23;5851:32;5848:2;;;5896:1;5893;5886:12;5848:2;-1:-1:-1;5919:23:13;;5838:110;-1:-1:-1;5838:110:13:o;5953:256::-;6019:6;6027;6080:2;6068:9;6059:7;6055:23;6051:32;6048:2;;;6096:1;6093;6086:12;6048:2;6119:28;6137:9;6119:28;:::i;:::-;6109:38;;6166:37;6199:2;6188:9;6184:18;6166:37;:::i;6214:324::-;6289:6;6297;6305;6358:2;6346:9;6337:7;6333:23;6329:32;6326:2;;;6374:1;6371;6364:12;6326:2;6397:28;6415:9;6397:28;:::i;:::-;6387:38;;6444:37;6477:2;6466:9;6462:18;6444:37;:::i;6543:316::-;6584:3;6622:5;6616:12;6649:6;6644:3;6637:19;6665:63;6721:6;6714:4;6709:3;6705:14;6698:4;6691:5;6687:16;6665:63;:::i;:::-;6773:2;6761:15;6778:66;6757:88;6748:98;;;;6848:4;6744:109;;6592:267;-1:-1:-1;;6592:267:13:o;6864:470::-;7043:3;7081:6;7075:13;7097:53;7143:6;7138:3;7131:4;7123:6;7119:17;7097:53;:::i;:::-;7213:13;;7172:16;;;;7235:57;7213:13;7172:16;7269:4;7257:17;;7235:57;:::i;:::-;7308:20;;7051:283;-1:-1:-1;;;;7051:283:13:o;7780:511::-;7974:4;8003:42;8084:2;8076:6;8072:15;8061:9;8054:34;8136:2;8128:6;8124:15;8119:2;8108:9;8104:18;8097:43;;8176:6;8171:2;8160:9;8156:18;8149:34;8219:3;8214:2;8203:9;8199:18;8192:31;8240:45;8280:3;8269:9;8265:19;8257:6;8240:45;:::i;:::-;8232:53;7983:308;-1:-1:-1;;;;;;7983:308:13:o;8488:219::-;8637:2;8626:9;8619:21;8600:4;8657:44;8697:2;8686:9;8682:18;8674:6;8657:44;:::i;23492:334::-;23563:2;23557:9;23619:2;23609:13;;23624:66;23605:86;23593:99;;23722:18;23707:34;;23743:22;;;23704:62;23701:2;;;23769:18;;:::i;:::-;23805:2;23798:22;23537:289;;-1:-1:-1;23537:289:13:o;23831:183::-;23891:4;23924:18;23916:6;23913:30;23910:2;;;23946:18;;:::i;:::-;-1:-1:-1;23991:1:13;23987:14;24003:4;23983:25;;23900:114::o;24019:253::-;24059:3;24087:34;24148:2;24145:1;24141:10;24178:2;24175:1;24171:10;24209:3;24205:2;24201:12;24196:3;24193:21;24190:2;;;24217:18;;:::i;24277:128::-;24317:3;24348:1;24344:6;24341:1;24338:13;24335:2;;;24354:18;;:::i;:::-;-1:-1:-1;24390:9:13;;24325:80::o;24410:120::-;24450:1;24476;24466:2;;24481:18;;:::i;:::-;-1:-1:-1;24515:9:13;;24456:74::o;24535:228::-;24575:7;24701:1;24633:66;24629:74;24626:1;24623:81;24618:1;24611:9;24604:17;24600:105;24597:2;;;24708:18;;:::i;:::-;-1:-1:-1;24748:9:13;;24587:176::o;24768:246::-;24808:4;24837:34;24921:10;;;;24891;;24943:12;;;24940:2;;;24958:18;;:::i;:::-;24995:13;;24817:197;-1:-1:-1;;;24817:197:13:o;25019:125::-;25059:4;25087:1;25084;25081:8;25078:2;;;25092:18;;:::i;:::-;-1:-1:-1;25129:9:13;;25068:76::o;25149:258::-;25221:1;25231:113;25245:6;25242:1;25239:13;25231:113;;;25321:11;;;25315:18;25302:11;;;25295:39;25267:2;25260:10;25231:113;;;25362:6;25359:1;25356:13;25353:2;;;-1:-1:-1;;25397:1:13;25379:16;;25372:27;25202:205::o;25412:196::-;25451:3;25479:5;25469:2;;25488:18;;:::i;:::-;-1:-1:-1;25535:66:13;25524:78;;25459:149::o;25613:437::-;25692:1;25688:12;;;;25735;;;25756:2;;25810:4;25802:6;25798:17;25788:27;;25756:2;25863;25855:6;25852:14;25832:18;25829:38;25826:2;;;25900:77;25897:1;25890:88;26001:4;25998:1;25991:15;26029:4;26026:1;26019:15;25826:2;;25668:382;;;:::o;26055:195::-;26094:3;26125:66;26118:5;26115:77;26112:2;;;26195:18;;:::i;:::-;-1:-1:-1;26242:1:13;26231:13;;26102:148::o;26255:112::-;26287:1;26313;26303:2;;26318:18;;:::i;:::-;-1:-1:-1;26352:9:13;;26293:74::o;26372:184::-;26424:77;26421:1;26414:88;26521:4;26518:1;26511:15;26545:4;26542:1;26535:15;26561:184;26613:77;26610:1;26603:88;26710:4;26707:1;26700:15;26734:4;26731:1;26724:15;26750:184;26802:77;26799:1;26792:88;26899:4;26896:1;26889:15;26923:4;26920:1;26913:15;26939:184;26991:77;26988:1;26981:88;27088:4;27085:1;27078:15;27112:4;27109:1;27102:15;27128:177;27213:66;27206:5;27202:78;27195:5;27192:89;27182:2;;27295:1;27292;27285:12

Swarm Source

ipfs://082f028a0849f7e80b0665ff010fd7694960eb887dac657175a624ea541fc419
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.