ETH Price: $3,457.96 (+1.54%)
Gas: 7 Gwei

Token

Calavera Crew (CALACREW)
 

Overview

Max Total Supply

557 CALACREW

Holders

271

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
the3xg.eth
Balance
1 CALACREW
0xca536f1a439eadb69643b850a198939bae77ee4e
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:
CryptoCalaverasMembership

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

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


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

contract CryptoCalaverasMembership is ERC721Enumerable, Ownable, Functions, Metadata {
  using Strings for uint256;
  
  uint256 public constant NFT_MAX = 3333;
  uint256 public constant PURCHASE_LIMIT = 10;
  uint256 public constant PURCHASE_LIMIT_PER_WALLET_DEV = 50;
  uint256 private price = 0.04 ether;

  bool public isMasterActive = false;

  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';
  
    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
    }
  
  function mint(uint256 numberOfTokens) external payable {

    require(isMasterActive, 'Contract is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
    require(price * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

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

      uint256 tokenId = totalSupply() + 1;

      _safeMint(msg.sender, tokenId);
    }
    
    }

    //reserve
  function reserve(address[] calldata to) external  onlyOwner {
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
        require(balanceOf(msg.sender) <= PURCHASE_LIMIT_PER_WALLET_DEV,'You cant mint anymore tokens');

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

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


  function MasterActive(bool _isMasterActive) external override onlyOwner {
    isMasterActive = _isMasterActive;
  }
  
  
    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    function getPrice() public view returns (uint256){
        return price;
    }
    
    address Address1 = 0xB304bf6bAaE65Ac9A3B1CdBB4E48e5589a3ff9A2; //team1
    address Address2 = 0xCAa63F2f8571Eae0163C0C26ECcF2872589eA170; //team2
    address Address3 = 0xF4A12bC4596E1c3e19D512F76325B52D72D375CF; //team3
    address Address4 = 0xdA00A06Ab3BbD3544B79C1350C463CAb9f196880; //team4
    address Address5 = 0x65a112b4604eb4B946D14E8EFbcc39f6968F49bE; //team5
    address Address6 = 0x96C2A8e9437dE19215121b7137650eC6A032DF5B; //team6
    address Address7 = 0x01c3f58FaaEbf4B9a3eaD760Fb8A7bb0C3168467; //team7
    address Address8 = 0x75e06a34c1Ef068fC43ad56A1a5193f3778bF0B2; //team8
    address Address9 = 0xf38c60143b655A5d7b68B49C189Da7CB2b0604A1; //team9
    address Address10 = 0xa3f070BAEf828f712f38c360221B5250284891D7; //team10
    address Address11 = 0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5; //niftylabs
    address Address12 = 0xdFD02b83062edb018FfF3dA3C3151bFb2681E3aE; //treasury

    function withdraw() onlyOwner public {
        uint balance = address(this).balance;
        payable(Address1).transfer(balance*791/10000);
        payable(Address2).transfer(balance*791/10000);       
        payable(Address3).transfer(balance*791/10000);      
        payable(Address4).transfer(balance*791/10000);      
        payable(Address5).transfer(balance*791/10000);
        payable(Address6).transfer(balance*791/10000);
        payable(Address7).transfer(balance*791/10000);
        payable(Address8).transfer(balance*791/10000);
        payable(Address9).transfer(balance*791/10000);       
        payable(Address10).transfer(balance*791/10000);      
        payable(Address11).transfer(balance*1590/10000);      
        payable(Address12).transfer(balance*500/10000);
        payable(msg.sender).transfer(address(this).balance);
    }

  function setContractURI(string calldata URI) external override onlyOwner {
    _contractURI = URI;
  }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

interface Functions {
 
  function mint(uint256 numberOfTokens) external payable;

  function MasterActive(bool isMasterActive) external;

  function withdraw() external;
  
  function reserve(address[] calldata to) external;

}

File 5 of 15: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 15: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 15: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 11 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 15: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

  function setBaseURI(string calldata URI) external;

  function setRevealedBaseURI(string calldata revealedBaseURI) external;

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

File 14 of 15: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_isMasterActive","type":"bool"}],"name":"MasterActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT_PER_WALLET_DEV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"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":"isMasterActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052668e1bc9bf040000600b556000600c60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600d908051906020019062000051929190620005fd565b5060405180602001604052806000815250600e908051906020019062000079929190620005fd565b5060405180602001604052806000815250600f9080519060200190620000a1929190620005fd565b5073b304bf6baae65ac9a3b1cdbb4e48e5589a3ff9a2601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073caa63f2f8571eae0163c0c26eccf2872589ea170601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f4a12bc4596e1c3e19d512f76325b52d72d375cf601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073da00a06ab3bbd3544b79c1350c463cab9f196880601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507365a112b4604eb4b946d14e8efbcc39f6968f49be601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507396c2a8e9437de19215121b7137650ec6a032df5b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507301c3f58faaebf4b9a3ead760fb8a7bb0c3168467601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507375e06a34c1ef068fc43ad56a1a5193f3778bf0b2601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f38c60143b655a5d7b68b49c189da7cb2b0604a1601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a3f070baef828f712f38c360221b5250284891d7601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b5601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dfd02b83062edb018fff3da3c3151bfb2681e3ae601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620004ab57600080fd5b50604051620053ec380380620053ec8339818101604052810190620004d191906200084a565b81818160009080519060200190620004eb929190620005fd565b50806001908051906020019062000504929190620005fd565b505050620005276200051b6200052f60201b60201c565b6200053760201b60201c565b505062000934565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200060b90620008fe565b90600052602060002090601f0160209004810192826200062f57600085556200067b565b82601f106200064a57805160ff19168380011785556200067b565b828001600101855582156200067b579182015b828111156200067a5782518255916020019190600101906200065d565b5b5090506200068a91906200068e565b5090565b5b80821115620006a95760008160009055506001016200068f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200071682620006cb565b810181811067ffffffffffffffff82111715620007385762000737620006dc565b5b80604052505050565b60006200074d620006ad565b90506200075b82826200070b565b919050565b600067ffffffffffffffff8211156200077e576200077d620006dc565b5b6200078982620006cb565b9050602081019050919050565b60005b83811015620007b657808201518184015260208101905062000799565b83811115620007c6576000848401525b50505050565b6000620007e3620007dd8462000760565b62000741565b905082815260208101848484011115620008025762000801620006c6565b5b6200080f84828562000796565b509392505050565b600082601f8301126200082f576200082e620006c1565b5b815162000841848260208601620007cc565b91505092915050565b60008060408385031215620008645762000863620006b7565b5b600083015167ffffffffffffffff811115620008855762000884620006bc565b5b620008938582860162000817565b925050602083015167ffffffffffffffff811115620008b757620008b6620006bc565b5b620008c58582860162000817565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091757607f821691505b602082108114156200092e576200092d620008cf565b5b50919050565b614aa880620009446000396000f3fe6080604052600436106101ee5760003560e01c80639123468a1161010d578063b88d4fde116100a0578063d682ed861161006f578063d682ed86146106da578063d75e611014610703578063e8a3d4851461072e578063e985e9c514610759578063f2fde38b14610796576101ee565b8063b88d4fde1461061e578063be372db414610647578063c30e768414610672578063c87b56dd1461069d576101ee565b806398d5fdca116100dc57806398d5fdca14610585578063a0712d68146105b0578063a22cb465146105cc578063a73d8ca7146105f5576101ee565b80639123468a146104dd57806391b7f5ed14610508578063938e3d7b1461053157806395d89b411461055a576101ee565b806342842e0e116101855780636e83843a116101545780636e83843a1461043557806370a082311461045e578063715018a61461049b5780638da5cb5b146104b2576101ee565b806342842e0e146103695780634f6ccce71461039257806355f804b3146103cf5780636352211e146103f8576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613335565b6107bf565b604051610227919061337d565b60405180910390f35b34801561023c57600080fd5b50610245610839565b6040516102529190613431565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613489565b6108cb565b60405161028f91906134f7565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061353e565b610950565b005b3480156102cd57600080fd5b506102d6610a68565b6040516102e3919061358d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906135a8565b610a75565b005b34801561032157600080fd5b5061033c6004803603810190610337919061353e565b610ad5565b604051610349919061358d565b60405180910390f35b34801561035e57600080fd5b50610367610b7a565b005b34801561037557600080fd5b50610390600480360381019061038b91906135a8565b611269565b005b34801561039e57600080fd5b506103b960048036038101906103b49190613489565b611289565b6040516103c6919061358d565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613660565b6112fa565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613489565b61138c565b60405161042c91906134f7565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613660565b61143e565b005b34801561046a57600080fd5b50610485600480360381019061048091906136ad565b6114d0565b604051610492919061358d565b60405180910390f35b3480156104a757600080fd5b506104b0611588565b005b3480156104be57600080fd5b506104c7611610565b6040516104d491906134f7565b60405180910390f35b3480156104e957600080fd5b506104f261163a565b6040516104ff919061337d565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613489565b61164d565b005b34801561053d57600080fd5b5061055860048036038101906105539190613660565b6116d3565b005b34801561056657600080fd5b5061056f611765565b60405161057c9190613431565b60405180910390f35b34801561059157600080fd5b5061059a6117f7565b6040516105a7919061358d565b60405180910390f35b6105ca60048036038101906105c59190613489565b611801565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613706565b611a0e565b005b34801561060157600080fd5b5061061c60048036038101906106179190613746565b611b8f565b005b34801561062a57600080fd5b50610645600480360381019061064091906138a3565b611c28565b005b34801561065357600080fd5b5061065c611c8a565b604051610669919061358d565b60405180910390f35b34801561067e57600080fd5b50610687611c8f565b604051610694919061358d565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613489565b611c95565b6040516106d19190613431565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061397c565b611e3a565b005b34801561070f57600080fd5b50610718611fbd565b604051610725919061358d565b60405180910390f35b34801561073a57600080fd5b50610743611fc2565b6040516107509190613431565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906139c9565b612054565b60405161078d919061337d565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906136ad565b6120e8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108325750610831826121e0565b5b9050919050565b60606000805461084890613a38565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613a38565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d6826122c2565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613adc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b8261138c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390613b6e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb61232e565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a1461232e565b612054565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613c00565b60405180910390fd5b610a638383612336565b505050565b6000600880549050905090565b610a86610a8061232e565b826123ef565b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613c92565b60405180910390fd5b610ad08383836124cd565b505050565b6000610ae0836114d0565b8210610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613d24565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b8261232e565b73ffffffffffffffffffffffffffffffffffffffff16610ba0611610565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613d90565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610c489190613ddf565b610c529190613e68565b9081150290604051600060405180830381858888f19350505050158015610c7d573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610ccb9190613ddf565b610cd59190613e68565b9081150290604051600060405180830381858888f19350505050158015610d00573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610d4e9190613ddf565b610d589190613e68565b9081150290604051600060405180830381858888f19350505050158015610d83573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610dd19190613ddf565b610ddb9190613e68565b9081150290604051600060405180830381858888f19350505050158015610e06573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610e549190613ddf565b610e5e9190613e68565b9081150290604051600060405180830381858888f19350505050158015610e89573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610ed79190613ddf565b610ee19190613e68565b9081150290604051600060405180830381858888f19350505050158015610f0c573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610f5a9190613ddf565b610f649190613e68565b9081150290604051600060405180830381858888f19350505050158015610f8f573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610fdd9190613ddf565b610fe79190613e68565b9081150290604051600060405180830381858888f19350505050158015611012573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610317846110609190613ddf565b61106a9190613e68565b9081150290604051600060405180830381858888f19350505050158015611095573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610317846110e39190613ddf565b6110ed9190613e68565b9081150290604051600060405180830381858888f19350505050158015611118573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610636846111669190613ddf565b6111709190613e68565b9081150290604051600060405180830381858888f1935050505015801561119b573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f4846111e99190613ddf565b6111f39190613e68565b9081150290604051600060405180830381858888f1935050505015801561121e573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611265573d6000803e3d6000fd5b5050565b61128483838360405180602001604052806000815250611c28565b505050565b6000611293610a68565b82106112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613f0b565b60405180910390fd5b600882815481106112e8576112e7613f2b565b5b90600052602060002001549050919050565b61130261232e565b73ffffffffffffffffffffffffffffffffffffffff16611320611610565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90613d90565b60405180910390fd5b8181600e9190611387929190613226565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613fcc565b60405180910390fd5b80915050919050565b61144661232e565b73ffffffffffffffffffffffffffffffffffffffff16611464611610565b73ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613d90565b60405180910390fd5b8181600f91906114cb929190613226565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115389061405e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61159061232e565b73ffffffffffffffffffffffffffffffffffffffff166115ae611610565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613d90565b60405180910390fd5b61160e6000612729565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b61165561232e565b73ffffffffffffffffffffffffffffffffffffffff16611673611610565b73ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090613d90565b60405180910390fd5b80600b8190555050565b6116db61232e565b73ffffffffffffffffffffffffffffffffffffffff166116f9611610565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690613d90565b60405180910390fd5b8181600d9190611760929190613226565b505050565b60606001805461177490613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546117a090613a38565b80156117ed5780601f106117c2576101008083540402835291602001916117ed565b820191906000526020600020905b8154815290600101906020018083116117d057829003601f168201915b5050505050905090565b6000600b54905090565b600c60009054906101000a900460ff16611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906140ca565b60405180910390fd5b610d0561185b610a68565b1061189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290614136565b60405180910390fd5b600081116118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906141a2565b60405180910390fd5b600a811115611922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119199061420e565b60405180910390fd5b610d058161192e610a68565b611938919061422e565b1115611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906142d0565b60405180910390fd5b3481600b546119889190613ddf565b11156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c09061433c565b60405180910390fd5b60005b81811015611a0a57600060016119e0610a68565b6119ea919061422e565b90506119f633826127ef565b508080611a029061435c565b9150506119cc565b5050565b611a1661232e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b906143f1565b60405180910390fd5b8060056000611a9161232e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b3e61232e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b83919061337d565b60405180910390a35050565b611b9761232e565b73ffffffffffffffffffffffffffffffffffffffff16611bb5611610565b73ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290613d90565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611c39611c3361232e565b836123ef565b611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90613c92565b60405180910390fd5b611c848484848461280d565b50505050565b603281565b610d0581565b6060611ca0826122c2565b611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061445d565b60405180910390fd5b6000600f8054611cee90613a38565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1a90613a38565b8015611d675780601f10611d3c57610100808354040283529160200191611d67565b820191906000526020600020905b815481529060010190602001808311611d4a57829003601f168201915b505050505090506000815111611e0757600e8054611d8490613a38565b80601f0160208091040260200160405190810160405280929190818152602001828054611db090613a38565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b5050505050611e32565b80611e1184612869565b604051602001611e229291906144b9565b6040516020818303038152906040525b915050919050565b611e4261232e565b73ffffffffffffffffffffffffffffffffffffffff16611e60611610565b73ffffffffffffffffffffffffffffffffffffffff1614611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613d90565b60405180910390fd5b610d05611ec1610a68565b10611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614136565b60405180910390fd5b6032611f0c336114d0565b1115611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614529565b60405180910390fd5b60005b82829050811015611fb85760006001611f67610a68565b611f71919061422e565b9050611fa4848484818110611f8957611f88613f2b565b5b9050602002016020810190611f9e91906136ad565b826127ef565b508080611fb09061435c565b915050611f50565b505050565b600a81565b6060600d8054611fd190613a38565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffd90613a38565b801561204a5780601f1061201f5761010080835404028352916020019161204a565b820191906000526020600020905b81548152906001019060200180831161202d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120f061232e565b73ffffffffffffffffffffffffffffffffffffffff1661210e611610565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90613d90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb906145bb565b60405180910390fd5b6121dd81612729565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122ab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122bb57506122ba826129ca565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123a98361138c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123fa826122c2565b612439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124309061464d565b60405180910390fd5b60006124448361138c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b357508373ffffffffffffffffffffffffffffffffffffffff1661249b846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b806124c457506124c38185612054565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124ed8261138c565b73ffffffffffffffffffffffffffffffffffffffff1614612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a906146df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90614771565b60405180910390fd5b6125be838383612a34565b6125c9600082612336565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126199190614791565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612670919061422e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612809828260405180602001604052806000815250612b48565b5050565b6128188484846124cd565b61282484848484612ba3565b612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90614837565b60405180910390fd5b50505050565b606060008214156128b1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c5565b600082905060005b600082146128e35780806128cc9061435c565b915050600a826128dc9190613e68565b91506128b9565b60008167ffffffffffffffff8111156128ff576128fe613778565b5b6040519080825280601f01601f1916602001820160405280156129315781602001600182028036833780820191505090505b5090505b600085146129be5760018261294a9190614791565b9150600a856129599190614857565b6030612965919061422e565b60f81b81838151811061297b5761297a613f2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129b79190613e68565b9450612935565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a3f838383612d3a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8257612a7d81612d3f565b612ac1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ac057612abf8382612d88565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0457612aff81612ef5565b612b43565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b4257612b418282612fc6565b5b5b505050565b612b528383613045565b612b5f6000848484612ba3565b612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9590614837565b60405180910390fd5b505050565b6000612bc48473ffffffffffffffffffffffffffffffffffffffff16613213565b15612d2d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bed61232e565b8786866040518563ffffffff1660e01b8152600401612c0f94939291906148dd565b602060405180830381600087803b158015612c2957600080fd5b505af1925050508015612c5a57506040513d601f19601f82011682018060405250810190612c57919061493e565b60015b612cdd573d8060008114612c8a576040519150601f19603f3d011682016040523d82523d6000602084013e612c8f565b606091505b50600081511415612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90614837565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d32565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d95846114d0565b612d9f9190614791565b9050600060076000848152602001908152602001600020549050818114612e84576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f099190614791565b9050600060096000848152602001908152602001600020549050600060088381548110612f3957612f38613f2b565b5b906000526020600020015490508060088381548110612f5b57612f5a613f2b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612faa57612fa961496b565b5b6001900381819060005260206000200160009055905550505050565b6000612fd1836114d0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac906149e6565b60405180910390fd5b6130be816122c2565b156130fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f590614a52565b60405180910390fd5b61310a60008383612a34565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461315a919061422e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461323290613a38565b90600052602060002090601f016020900481019282613254576000855561329b565b82601f1061326d57803560ff191683800117855561329b565b8280016001018555821561329b579182015b8281111561329a57823582559160200191906001019061327f565b5b5090506132a891906132ac565b5090565b5b808211156132c55760008160009055506001016132ad565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613312816132dd565b811461331d57600080fd5b50565b60008135905061332f81613309565b92915050565b60006020828403121561334b5761334a6132d3565b5b600061335984828501613320565b91505092915050565b60008115159050919050565b61337781613362565b82525050565b6000602082019050613392600083018461336e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133d25780820151818401526020810190506133b7565b838111156133e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061340382613398565b61340d81856133a3565b935061341d8185602086016133b4565b613426816133e7565b840191505092915050565b6000602082019050818103600083015261344b81846133f8565b905092915050565b6000819050919050565b61346681613453565b811461347157600080fd5b50565b6000813590506134838161345d565b92915050565b60006020828403121561349f5761349e6132d3565b5b60006134ad84828501613474565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134e1826134b6565b9050919050565b6134f1816134d6565b82525050565b600060208201905061350c60008301846134e8565b92915050565b61351b816134d6565b811461352657600080fd5b50565b60008135905061353881613512565b92915050565b60008060408385031215613555576135546132d3565b5b600061356385828601613529565b925050602061357485828601613474565b9150509250929050565b61358781613453565b82525050565b60006020820190506135a2600083018461357e565b92915050565b6000806000606084860312156135c1576135c06132d3565b5b60006135cf86828701613529565b93505060206135e086828701613529565b92505060406135f186828701613474565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126136205761361f6135fb565b5b8235905067ffffffffffffffff81111561363d5761363c613600565b5b60208301915083600182028301111561365957613658613605565b5b9250929050565b60008060208385031215613677576136766132d3565b5b600083013567ffffffffffffffff811115613695576136946132d8565b5b6136a18582860161360a565b92509250509250929050565b6000602082840312156136c3576136c26132d3565b5b60006136d184828501613529565b91505092915050565b6136e381613362565b81146136ee57600080fd5b50565b600081359050613700816136da565b92915050565b6000806040838503121561371d5761371c6132d3565b5b600061372b85828601613529565b925050602061373c858286016136f1565b9150509250929050565b60006020828403121561375c5761375b6132d3565b5b600061376a848285016136f1565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137b0826133e7565b810181811067ffffffffffffffff821117156137cf576137ce613778565b5b80604052505050565b60006137e26132c9565b90506137ee82826137a7565b919050565b600067ffffffffffffffff82111561380e5761380d613778565b5b613817826133e7565b9050602081019050919050565b82818337600083830152505050565b6000613846613841846137f3565b6137d8565b90508281526020810184848401111561386257613861613773565b5b61386d848285613824565b509392505050565b600082601f83011261388a576138896135fb565b5b813561389a848260208601613833565b91505092915050565b600080600080608085870312156138bd576138bc6132d3565b5b60006138cb87828801613529565b94505060206138dc87828801613529565b93505060406138ed87828801613474565b925050606085013567ffffffffffffffff81111561390e5761390d6132d8565b5b61391a87828801613875565b91505092959194509250565b60008083601f84011261393c5761393b6135fb565b5b8235905067ffffffffffffffff81111561395957613958613600565b5b60208301915083602082028301111561397557613974613605565b5b9250929050565b60008060208385031215613993576139926132d3565b5b600083013567ffffffffffffffff8111156139b1576139b06132d8565b5b6139bd85828601613926565b92509250509250929050565b600080604083850312156139e0576139df6132d3565b5b60006139ee85828601613529565b92505060206139ff85828601613529565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a5057607f821691505b60208210811415613a6457613a63613a09565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ac6602c836133a3565b9150613ad182613a6a565b604082019050919050565b60006020820190508181036000830152613af581613ab9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b586021836133a3565b9150613b6382613afc565b604082019050919050565b60006020820190508181036000830152613b8781613b4b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613bea6038836133a3565b9150613bf582613b8e565b604082019050919050565b60006020820190508181036000830152613c1981613bdd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613c7c6031836133a3565b9150613c8782613c20565b604082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613d0e602b836133a3565b9150613d1982613cb2565b604082019050919050565b60006020820190508181036000830152613d3d81613d01565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d7a6020836133a3565b9150613d8582613d44565b602082019050919050565b60006020820190508181036000830152613da981613d6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613dea82613453565b9150613df583613453565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e2e57613e2d613db0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7382613453565b9150613e7e83613453565b925082613e8e57613e8d613e39565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613ef5602c836133a3565b9150613f0082613e99565b604082019050919050565b60006020820190508181036000830152613f2481613ee8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613fb66029836133a3565b9150613fc182613f5a565b604082019050919050565b60006020820190508181036000830152613fe581613fa9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614048602a836133a3565b915061405382613fec565b604082019050919050565b600060208201905081810360008301526140778161403b565b9050919050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b60006140b46016836133a3565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000614120601b836133a3565b915061412b826140ea565b602082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00600082015250565b600061418c601f836133a3565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b60006141f86020836133a3565b9150614203826141c2565b602082019050919050565b60006020820190508181036000830152614227816141eb565b9050919050565b600061423982613453565b915061424483613453565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561427957614278613db0565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006142ba6020836133a3565b91506142c582614284565b602082019050919050565b600060208201905081810360008301526142e9816142ad565b9050919050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000614326601c836133a3565b9150614331826142f0565b602082019050919050565b6000602082019050818103600083015261435581614319565b9050919050565b600061436782613453565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561439a57614399613db0565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006143db6019836133a3565b91506143e6826143a5565b602082019050919050565b6000602082019050818103600083015261440a816143ce565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b60006144476014836133a3565b915061445282614411565b602082019050919050565b600060208201905081810360008301526144768161443a565b9050919050565b600081905092915050565b600061449382613398565b61449d818561447d565b93506144ad8185602086016133b4565b80840191505092915050565b60006144c58285614488565b91506144d18284614488565b91508190509392505050565b7f596f752063616e74206d696e7420616e796d6f726520746f6b656e7300000000600082015250565b6000614513601c836133a3565b915061451e826144dd565b602082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145a56026836133a3565b91506145b082614549565b604082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614637602c836133a3565b9150614642826145db565b604082019050919050565b600060208201905081810360008301526146668161462a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006146c96029836133a3565b91506146d48261466d565b604082019050919050565b600060208201905081810360008301526146f8816146bc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061475b6024836133a3565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b600061479c82613453565b91506147a783613453565b9250828210156147ba576147b9613db0565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006148216032836133a3565b915061482c826147c5565b604082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b600061486282613453565b915061486d83613453565b92508261487d5761487c613e39565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148af82614888565b6148b98185614893565b93506148c98185602086016133b4565b6148d2816133e7565b840191505092915050565b60006080820190506148f260008301876134e8565b6148ff60208301866134e8565b61490c604083018561357e565b818103606083015261491e81846148a4565b905095945050505050565b60008151905061493881613309565b92915050565b600060208284031215614954576149536132d3565b5b600061496284828501614929565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149d06020836133a3565b91506149db8261499a565b602082019050919050565b600060208201905081810360008301526149ff816149c3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a3c601c836133a3565b9150614a4782614a06565b602082019050919050565b60006020820190508181036000830152614a6b81614a2f565b905091905056fea2646970667358221220ab0afcb0633e1d931c524b8cb5720c0e4a67e7444a50b3952fc14f809990843464736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d43616c6176657261204372657700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000843414c4143524557000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80639123468a1161010d578063b88d4fde116100a0578063d682ed861161006f578063d682ed86146106da578063d75e611014610703578063e8a3d4851461072e578063e985e9c514610759578063f2fde38b14610796576101ee565b8063b88d4fde1461061e578063be372db414610647578063c30e768414610672578063c87b56dd1461069d576101ee565b806398d5fdca116100dc57806398d5fdca14610585578063a0712d68146105b0578063a22cb465146105cc578063a73d8ca7146105f5576101ee565b80639123468a146104dd57806391b7f5ed14610508578063938e3d7b1461053157806395d89b411461055a576101ee565b806342842e0e116101855780636e83843a116101545780636e83843a1461043557806370a082311461045e578063715018a61461049b5780638da5cb5b146104b2576101ee565b806342842e0e146103695780634f6ccce71461039257806355f804b3146103cf5780636352211e146103f8576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613335565b6107bf565b604051610227919061337d565b60405180910390f35b34801561023c57600080fd5b50610245610839565b6040516102529190613431565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613489565b6108cb565b60405161028f91906134f7565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061353e565b610950565b005b3480156102cd57600080fd5b506102d6610a68565b6040516102e3919061358d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906135a8565b610a75565b005b34801561032157600080fd5b5061033c6004803603810190610337919061353e565b610ad5565b604051610349919061358d565b60405180910390f35b34801561035e57600080fd5b50610367610b7a565b005b34801561037557600080fd5b50610390600480360381019061038b91906135a8565b611269565b005b34801561039e57600080fd5b506103b960048036038101906103b49190613489565b611289565b6040516103c6919061358d565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613660565b6112fa565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613489565b61138c565b60405161042c91906134f7565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613660565b61143e565b005b34801561046a57600080fd5b50610485600480360381019061048091906136ad565b6114d0565b604051610492919061358d565b60405180910390f35b3480156104a757600080fd5b506104b0611588565b005b3480156104be57600080fd5b506104c7611610565b6040516104d491906134f7565b60405180910390f35b3480156104e957600080fd5b506104f261163a565b6040516104ff919061337d565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613489565b61164d565b005b34801561053d57600080fd5b5061055860048036038101906105539190613660565b6116d3565b005b34801561056657600080fd5b5061056f611765565b60405161057c9190613431565b60405180910390f35b34801561059157600080fd5b5061059a6117f7565b6040516105a7919061358d565b60405180910390f35b6105ca60048036038101906105c59190613489565b611801565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613706565b611a0e565b005b34801561060157600080fd5b5061061c60048036038101906106179190613746565b611b8f565b005b34801561062a57600080fd5b50610645600480360381019061064091906138a3565b611c28565b005b34801561065357600080fd5b5061065c611c8a565b604051610669919061358d565b60405180910390f35b34801561067e57600080fd5b50610687611c8f565b604051610694919061358d565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613489565b611c95565b6040516106d19190613431565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc919061397c565b611e3a565b005b34801561070f57600080fd5b50610718611fbd565b604051610725919061358d565b60405180910390f35b34801561073a57600080fd5b50610743611fc2565b6040516107509190613431565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906139c9565b612054565b60405161078d919061337d565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906136ad565b6120e8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108325750610831826121e0565b5b9050919050565b60606000805461084890613a38565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613a38565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d6826122c2565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613adc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b8261138c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390613b6e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb61232e565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a1461232e565b612054565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613c00565b60405180910390fd5b610a638383612336565b505050565b6000600880549050905090565b610a86610a8061232e565b826123ef565b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613c92565b60405180910390fd5b610ad08383836124cd565b505050565b6000610ae0836114d0565b8210610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613d24565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b8261232e565b73ffffffffffffffffffffffffffffffffffffffff16610ba0611610565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613d90565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610c489190613ddf565b610c529190613e68565b9081150290604051600060405180830381858888f19350505050158015610c7d573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610ccb9190613ddf565b610cd59190613e68565b9081150290604051600060405180830381858888f19350505050158015610d00573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610d4e9190613ddf565b610d589190613e68565b9081150290604051600060405180830381858888f19350505050158015610d83573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610dd19190613ddf565b610ddb9190613e68565b9081150290604051600060405180830381858888f19350505050158015610e06573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610e549190613ddf565b610e5e9190613e68565b9081150290604051600060405180830381858888f19350505050158015610e89573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610ed79190613ddf565b610ee19190613e68565b9081150290604051600060405180830381858888f19350505050158015610f0c573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610f5a9190613ddf565b610f649190613e68565b9081150290604051600060405180830381858888f19350505050158015610f8f573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061031784610fdd9190613ddf565b610fe79190613e68565b9081150290604051600060405180830381858888f19350505050158015611012573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610317846110609190613ddf565b61106a9190613e68565b9081150290604051600060405180830381858888f19350505050158015611095573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610317846110e39190613ddf565b6110ed9190613e68565b9081150290604051600060405180830381858888f19350505050158015611118573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710610636846111669190613ddf565b6111709190613e68565b9081150290604051600060405180830381858888f1935050505015801561119b573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f4846111e99190613ddf565b6111f39190613e68565b9081150290604051600060405180830381858888f1935050505015801561121e573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611265573d6000803e3d6000fd5b5050565b61128483838360405180602001604052806000815250611c28565b505050565b6000611293610a68565b82106112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613f0b565b60405180910390fd5b600882815481106112e8576112e7613f2b565b5b90600052602060002001549050919050565b61130261232e565b73ffffffffffffffffffffffffffffffffffffffff16611320611610565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90613d90565b60405180910390fd5b8181600e9190611387929190613226565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613fcc565b60405180910390fd5b80915050919050565b61144661232e565b73ffffffffffffffffffffffffffffffffffffffff16611464611610565b73ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613d90565b60405180910390fd5b8181600f91906114cb929190613226565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115389061405e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61159061232e565b73ffffffffffffffffffffffffffffffffffffffff166115ae611610565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613d90565b60405180910390fd5b61160e6000612729565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b61165561232e565b73ffffffffffffffffffffffffffffffffffffffff16611673611610565b73ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090613d90565b60405180910390fd5b80600b8190555050565b6116db61232e565b73ffffffffffffffffffffffffffffffffffffffff166116f9611610565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690613d90565b60405180910390fd5b8181600d9190611760929190613226565b505050565b60606001805461177490613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546117a090613a38565b80156117ed5780601f106117c2576101008083540402835291602001916117ed565b820191906000526020600020905b8154815290600101906020018083116117d057829003601f168201915b5050505050905090565b6000600b54905090565b600c60009054906101000a900460ff16611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906140ca565b60405180910390fd5b610d0561185b610a68565b1061189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290614136565b60405180910390fd5b600081116118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906141a2565b60405180910390fd5b600a811115611922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119199061420e565b60405180910390fd5b610d058161192e610a68565b611938919061422e565b1115611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906142d0565b60405180910390fd5b3481600b546119889190613ddf565b11156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c09061433c565b60405180910390fd5b60005b81811015611a0a57600060016119e0610a68565b6119ea919061422e565b90506119f633826127ef565b508080611a029061435c565b9150506119cc565b5050565b611a1661232e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b906143f1565b60405180910390fd5b8060056000611a9161232e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b3e61232e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b83919061337d565b60405180910390a35050565b611b9761232e565b73ffffffffffffffffffffffffffffffffffffffff16611bb5611610565b73ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290613d90565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611c39611c3361232e565b836123ef565b611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90613c92565b60405180910390fd5b611c848484848461280d565b50505050565b603281565b610d0581565b6060611ca0826122c2565b611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061445d565b60405180910390fd5b6000600f8054611cee90613a38565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1a90613a38565b8015611d675780601f10611d3c57610100808354040283529160200191611d67565b820191906000526020600020905b815481529060010190602001808311611d4a57829003601f168201915b505050505090506000815111611e0757600e8054611d8490613a38565b80601f0160208091040260200160405190810160405280929190818152602001828054611db090613a38565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b5050505050611e32565b80611e1184612869565b604051602001611e229291906144b9565b6040516020818303038152906040525b915050919050565b611e4261232e565b73ffffffffffffffffffffffffffffffffffffffff16611e60611610565b73ffffffffffffffffffffffffffffffffffffffff1614611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613d90565b60405180910390fd5b610d05611ec1610a68565b10611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614136565b60405180910390fd5b6032611f0c336114d0565b1115611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614529565b60405180910390fd5b60005b82829050811015611fb85760006001611f67610a68565b611f71919061422e565b9050611fa4848484818110611f8957611f88613f2b565b5b9050602002016020810190611f9e91906136ad565b826127ef565b508080611fb09061435c565b915050611f50565b505050565b600a81565b6060600d8054611fd190613a38565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffd90613a38565b801561204a5780601f1061201f5761010080835404028352916020019161204a565b820191906000526020600020905b81548152906001019060200180831161202d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120f061232e565b73ffffffffffffffffffffffffffffffffffffffff1661210e611610565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90613d90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb906145bb565b60405180910390fd5b6121dd81612729565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122ab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122bb57506122ba826129ca565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123a98361138c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123fa826122c2565b612439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124309061464d565b60405180910390fd5b60006124448361138c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b357508373ffffffffffffffffffffffffffffffffffffffff1661249b846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b806124c457506124c38185612054565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124ed8261138c565b73ffffffffffffffffffffffffffffffffffffffff1614612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a906146df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90614771565b60405180910390fd5b6125be838383612a34565b6125c9600082612336565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126199190614791565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612670919061422e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612809828260405180602001604052806000815250612b48565b5050565b6128188484846124cd565b61282484848484612ba3565b612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90614837565b60405180910390fd5b50505050565b606060008214156128b1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c5565b600082905060005b600082146128e35780806128cc9061435c565b915050600a826128dc9190613e68565b91506128b9565b60008167ffffffffffffffff8111156128ff576128fe613778565b5b6040519080825280601f01601f1916602001820160405280156129315781602001600182028036833780820191505090505b5090505b600085146129be5760018261294a9190614791565b9150600a856129599190614857565b6030612965919061422e565b60f81b81838151811061297b5761297a613f2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129b79190613e68565b9450612935565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a3f838383612d3a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8257612a7d81612d3f565b612ac1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ac057612abf8382612d88565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0457612aff81612ef5565b612b43565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b4257612b418282612fc6565b5b5b505050565b612b528383613045565b612b5f6000848484612ba3565b612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9590614837565b60405180910390fd5b505050565b6000612bc48473ffffffffffffffffffffffffffffffffffffffff16613213565b15612d2d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bed61232e565b8786866040518563ffffffff1660e01b8152600401612c0f94939291906148dd565b602060405180830381600087803b158015612c2957600080fd5b505af1925050508015612c5a57506040513d601f19601f82011682018060405250810190612c57919061493e565b60015b612cdd573d8060008114612c8a576040519150601f19603f3d011682016040523d82523d6000602084013e612c8f565b606091505b50600081511415612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90614837565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d32565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d95846114d0565b612d9f9190614791565b9050600060076000848152602001908152602001600020549050818114612e84576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f099190614791565b9050600060096000848152602001908152602001600020549050600060088381548110612f3957612f38613f2b565b5b906000526020600020015490508060088381548110612f5b57612f5a613f2b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612faa57612fa961496b565b5b6001900381819060005260206000200160009055905550505050565b6000612fd1836114d0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac906149e6565b60405180910390fd5b6130be816122c2565b156130fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f590614a52565b60405180910390fd5b61310a60008383612a34565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461315a919061422e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461323290613a38565b90600052602060002090601f016020900481019282613254576000855561329b565b82601f1061326d57803560ff191683800117855561329b565b8280016001018555821561329b579182015b8281111561329a57823582559160200191906001019061327f565b5b5090506132a891906132ac565b5090565b5b808211156132c55760008160009055506001016132ad565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613312816132dd565b811461331d57600080fd5b50565b60008135905061332f81613309565b92915050565b60006020828403121561334b5761334a6132d3565b5b600061335984828501613320565b91505092915050565b60008115159050919050565b61337781613362565b82525050565b6000602082019050613392600083018461336e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133d25780820151818401526020810190506133b7565b838111156133e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061340382613398565b61340d81856133a3565b935061341d8185602086016133b4565b613426816133e7565b840191505092915050565b6000602082019050818103600083015261344b81846133f8565b905092915050565b6000819050919050565b61346681613453565b811461347157600080fd5b50565b6000813590506134838161345d565b92915050565b60006020828403121561349f5761349e6132d3565b5b60006134ad84828501613474565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134e1826134b6565b9050919050565b6134f1816134d6565b82525050565b600060208201905061350c60008301846134e8565b92915050565b61351b816134d6565b811461352657600080fd5b50565b60008135905061353881613512565b92915050565b60008060408385031215613555576135546132d3565b5b600061356385828601613529565b925050602061357485828601613474565b9150509250929050565b61358781613453565b82525050565b60006020820190506135a2600083018461357e565b92915050565b6000806000606084860312156135c1576135c06132d3565b5b60006135cf86828701613529565b93505060206135e086828701613529565b92505060406135f186828701613474565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126136205761361f6135fb565b5b8235905067ffffffffffffffff81111561363d5761363c613600565b5b60208301915083600182028301111561365957613658613605565b5b9250929050565b60008060208385031215613677576136766132d3565b5b600083013567ffffffffffffffff811115613695576136946132d8565b5b6136a18582860161360a565b92509250509250929050565b6000602082840312156136c3576136c26132d3565b5b60006136d184828501613529565b91505092915050565b6136e381613362565b81146136ee57600080fd5b50565b600081359050613700816136da565b92915050565b6000806040838503121561371d5761371c6132d3565b5b600061372b85828601613529565b925050602061373c858286016136f1565b9150509250929050565b60006020828403121561375c5761375b6132d3565b5b600061376a848285016136f1565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137b0826133e7565b810181811067ffffffffffffffff821117156137cf576137ce613778565b5b80604052505050565b60006137e26132c9565b90506137ee82826137a7565b919050565b600067ffffffffffffffff82111561380e5761380d613778565b5b613817826133e7565b9050602081019050919050565b82818337600083830152505050565b6000613846613841846137f3565b6137d8565b90508281526020810184848401111561386257613861613773565b5b61386d848285613824565b509392505050565b600082601f83011261388a576138896135fb565b5b813561389a848260208601613833565b91505092915050565b600080600080608085870312156138bd576138bc6132d3565b5b60006138cb87828801613529565b94505060206138dc87828801613529565b93505060406138ed87828801613474565b925050606085013567ffffffffffffffff81111561390e5761390d6132d8565b5b61391a87828801613875565b91505092959194509250565b60008083601f84011261393c5761393b6135fb565b5b8235905067ffffffffffffffff81111561395957613958613600565b5b60208301915083602082028301111561397557613974613605565b5b9250929050565b60008060208385031215613993576139926132d3565b5b600083013567ffffffffffffffff8111156139b1576139b06132d8565b5b6139bd85828601613926565b92509250509250929050565b600080604083850312156139e0576139df6132d3565b5b60006139ee85828601613529565b92505060206139ff85828601613529565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a5057607f821691505b60208210811415613a6457613a63613a09565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ac6602c836133a3565b9150613ad182613a6a565b604082019050919050565b60006020820190508181036000830152613af581613ab9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b586021836133a3565b9150613b6382613afc565b604082019050919050565b60006020820190508181036000830152613b8781613b4b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613bea6038836133a3565b9150613bf582613b8e565b604082019050919050565b60006020820190508181036000830152613c1981613bdd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613c7c6031836133a3565b9150613c8782613c20565b604082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613d0e602b836133a3565b9150613d1982613cb2565b604082019050919050565b60006020820190508181036000830152613d3d81613d01565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d7a6020836133a3565b9150613d8582613d44565b602082019050919050565b60006020820190508181036000830152613da981613d6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613dea82613453565b9150613df583613453565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e2e57613e2d613db0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7382613453565b9150613e7e83613453565b925082613e8e57613e8d613e39565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613ef5602c836133a3565b9150613f0082613e99565b604082019050919050565b60006020820190508181036000830152613f2481613ee8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613fb66029836133a3565b9150613fc182613f5a565b604082019050919050565b60006020820190508181036000830152613fe581613fa9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614048602a836133a3565b915061405382613fec565b604082019050919050565b600060208201905081810360008301526140778161403b565b9050919050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b60006140b46016836133a3565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000614120601b836133a3565b915061412b826140ea565b602082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00600082015250565b600061418c601f836133a3565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b60006141f86020836133a3565b9150614203826141c2565b602082019050919050565b60006020820190508181036000830152614227816141eb565b9050919050565b600061423982613453565b915061424483613453565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561427957614278613db0565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006142ba6020836133a3565b91506142c582614284565b602082019050919050565b600060208201905081810360008301526142e9816142ad565b9050919050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000614326601c836133a3565b9150614331826142f0565b602082019050919050565b6000602082019050818103600083015261435581614319565b9050919050565b600061436782613453565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561439a57614399613db0565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006143db6019836133a3565b91506143e6826143a5565b602082019050919050565b6000602082019050818103600083015261440a816143ce565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b60006144476014836133a3565b915061445282614411565b602082019050919050565b600060208201905081810360008301526144768161443a565b9050919050565b600081905092915050565b600061449382613398565b61449d818561447d565b93506144ad8185602086016133b4565b80840191505092915050565b60006144c58285614488565b91506144d18284614488565b91508190509392505050565b7f596f752063616e74206d696e7420616e796d6f726520746f6b656e7300000000600082015250565b6000614513601c836133a3565b915061451e826144dd565b602082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145a56026836133a3565b91506145b082614549565b604082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614637602c836133a3565b9150614642826145db565b604082019050919050565b600060208201905081810360008301526146668161462a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006146c96029836133a3565b91506146d48261466d565b604082019050919050565b600060208201905081810360008301526146f8816146bc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061475b6024836133a3565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b600061479c82613453565b91506147a783613453565b9250828210156147ba576147b9613db0565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006148216032836133a3565b915061482c826147c5565b604082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b600061486282613453565b915061486d83613453565b92508261487d5761487c613e39565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148af82614888565b6148b98185614893565b93506148c98185602086016133b4565b6148d2816133e7565b840191505092915050565b60006080820190506148f260008301876134e8565b6148ff60208301866134e8565b61490c604083018561357e565b818103606083015261491e81846148a4565b905095945050505050565b60008151905061493881613309565b92915050565b600060208284031215614954576149536132d3565b5b600061496284828501614929565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149d06020836133a3565b91506149db8261499a565b602082019050919050565b600060208201905081810360008301526149ff816149c3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a3c601c836133a3565b9150614a4782614a06565b602082019050919050565b60006020820190508181036000830152614a6b81614a2f565b905091905056fea2646970667358221220ab0afcb0633e1d931c524b8cb5720c0e4a67e7444a50b3952fc14f809990843464736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d43616c6176657261204372657700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000843414c4143524557000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Calavera Crew
Arg [1] : symbol (string): CALACREW

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 43616c6176657261204372657700000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 43414c4143524557000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

205:4685:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:224:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2426:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1577:113:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4875:339:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1245:256:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3114:868:3;;;;;;;;;;;;;:::i;:::-;;5285:185:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1767:233:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4098:101:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2120:239:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4205:141:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1850:208:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:13;;;;;;;;;;;;;:::i;:::-;;999:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;524:34:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1993:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3988:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2595::5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2097:80:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;783:674;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4278:295:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1862:117:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5541:328:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;420:58:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4458:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1478:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;372:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4352:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:224:6;1039:4;1078:35;1063:50;;;:11;:50;;;;:90;;;;1117:36;1141:11;1117:23;:36::i;:::-;1063:90;1056:97;;937:224;;;:::o;2426:100:5:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;1577:113:6:-;1638:7;1665:10;:17;;;;1658:24;;1577:113;:::o;4875:339:5:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:12;:19;1480:5;1467:19;;;;;;;;;;;;;;;:26;1487:5;1467:26;;;;;;;;;;;;1460:33;;1245:256;;;;:::o;3114:868:3:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3162:12:3::1;3177:21;3162:36;;3217:8;;;;;;;;;;;3209:26;;:45;3248:5;3244:3;3236:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3209:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3273:8;;;;;;;;;;;3265:26;;:45;3304:5;3300:3;3292:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3265:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3336:8;;;;;;;;;;;3328:26;;:45;3367:5;3363:3;3355:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3328:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3398:8;;;;;;;;;;;3390:26;;:45;3429:5;3425:3;3417:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3390:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3460:8;;;;;;;;;;;3452:26;;:45;3491:5;3487:3;3479:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3452:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3516:8;;;;;;;;;;;3508:26;;:45;3547:5;3543:3;3535:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3508:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3572:8;;;;;;;;;;;3564:26;;:45;3603:5;3599:3;3591:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3564:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3628:8;;;;;;;;;;;3620:26;;:45;3659:5;3655:3;3647:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3620:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3684:8;;;;;;;;;;;3676:26;;:45;3715:5;3711:3;3703:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3676:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3747:9;;;;;;;;;;;3739:27;;:46;3779:5;3775:3;3767:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3739:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3810:9;;;;;;;;;;;3802:27;;:47;3843:5;3838:4;3830:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;3802:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3874:9;;;;;;;;;;;3866:27;;:46;3906:5;3902:3;3894:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3866:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3931:10;3923:28;;:51;3952:21;3923:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3151:831;3114:868::o:0;5285:185:5:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;1767:233:6:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;;1968:24;;1767:233;;;:::o;4098:101:3:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4190:3:3::1;;4174:13;:19;;;;;;;:::i;:::-;;4098:101:::0;;:::o;2120:239:5:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;4205:141:3:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4325:15:3::1;;4301:21;:39;;;;;;;:::i;:::-;;4205:141:::0;;:::o;1850:208:5:-;1922:7;1967:1;1950:19;;:5;:19;;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1650:94:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;999:87::-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;524:34:3:-;;;;;;;;;;;;;:::o;1993:92::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2068:9:3::1;2060:5;:17;;;;1993:92:::0;:::o;3988:104::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4083:3:3::1;;4068:12;:18;;;;;;;:::i;:::-;;3988:104:::0;;:::o;2595::5:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;2097:80:3:-;2138:7;2164:5;;2157:12;;2097:80;:::o;783:674::-;855:14;;;;;;;;;;;847:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;363:4;911:13;:11;:13::i;:::-;:23;903:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;998:1;981:14;:18;973:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;413:2;1050:14;:32;;1042:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;363:4;1150:14;1134:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:41;;1126:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1253:9;1235:14;1227:5;;:22;;;;:::i;:::-;:35;;1219:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1309:9;1304:140;1328:14;1324:1;:18;1304:140;;;1360:15;1394:1;1378:13;:11;:13::i;:::-;:17;;;;:::i;:::-;1360:35;;1406:30;1416:10;1428:7;1406:9;:30::i;:::-;1349:95;1344:3;;;;;:::i;:::-;;;;1304:140;;;;783:674;:::o;4278:295:5:-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;1862:117:3:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1958:15:3::1;1941:14;;:32;;;;;;;;;;;;;;;;;;1862:117:::0;:::o;5541:328:5:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;420:58:3:-;476:2;420:58;:::o;329:38::-;363:4;329:38;:::o;4458:429::-;4531:13;4561:16;4569:7;4561;:16::i;:::-;4553:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4687:29;4719:21;4687:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4786:1;4760:15;4754:29;:33;:127;;4868:13;4754:127;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4821:15;4838:18;:7;:16;:18::i;:::-;4804:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4754:127;4747:134;;;4458:429;;;:::o;1478:376::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;363:4:3::1;1553:13;:11;:13::i;:::-;:23;1545:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;476:2;1627:21;1637:10;1627:9;:21::i;:::-;:54;;1619:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1726:9;1722:127;1745:2;;:9;;1741:1;:13;1722:127;;;1770:15;1804:1;1788:13;:11;:13::i;:::-;:17;;;;:::i;:::-;1770:35;;1816:25;1826:2;;1829:1;1826:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1833:7;1816:9;:25::i;:::-;1761:88;1756:3;;;;;:::i;:::-;;;;1722:127;;;;1478:376:::0;;:::o;372:43::-;413:2;372:43;:::o;4352:100::-;4405:13;4434:12;4427:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4352:100;:::o;4644:164:5:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1899:192:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;1481:305:5:-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;7379:127::-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;11361:174:5:-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;2099:173:13:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;8363:110:5:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;6751:315::-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;288:723:14:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;787:157:4:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2613:589:6:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;2835:1;2819:18;;:4;:18;;;2815:187;;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;2916:10;;:4;:10;;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2912:90;2815:187;3030:1;3016:16;;:2;:16;;;3012:183;;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;3116:10;;:2;:10;;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;:::-;3112:83;3012:183;2613:589;;;:::o;8700:321:5:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;8700:321;;;:::o;12100:803::-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:624;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12575:1;12558:6;:13;:18;12554:272;;;12601:60;;;;;;;;;;:::i;:::-;;;;;;;;12554:272;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;12445:45;;;12435:55;;;:6;:55;;;;12428:62;;;;;12272:624;12880:4;12873:11;;12100:803;;;;;;;:::o;13475:126::-;;;;:::o;3925:164:6:-;4029:10;:17;;;;4002:15;:24;4018:7;4002:24;;;;;;;;;;;:44;;;;4057:10;4073:7;4057:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:164;:::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;4982:51;;5044:18;5065:17;:26;5083:7;5065:26;;;;;;;;;;;;5044:47;;5212:14;5198:10;:28;5194:328;;5243:19;5265:12;:18;5278:4;5265:18;;;;;;;;;;;;;;;:34;5284:14;5265:34;;;;;;;;;;;;5243:56;;5349:11;5316:12;:18;5329:4;5316:18;;;;;;;;;;;;;;;:30;5335:10;5316:30;;;;;;;;;;;:44;;;;5466:10;5433:17;:30;5451:11;5433:30;;;;;;;;;;;:43;;;;5228:294;5194:328;5618:17;:26;5636:7;5618:26;;;;;;;;;;;5611:33;;;5662:12;:18;5675:4;5662:18;;;;;;;;;;;;;;;:34;5681:14;5662:34;;;;;;;;;;;5655:41;;;4797:907;;4716:988;;:::o;5999:1079::-;6252:22;6297:1;6277:10;:17;;;;:21;;;;:::i;:::-;6252:46;;6309:18;6330:15;:24;6346:7;6330:24;;;;;;;;;;;;6309:45;;6681:19;6703:10;6714:14;6703:26;;;;;;;;:::i;:::-;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6878:10;6847:15;:28;6863:11;6847:28;;;;;;;;;;;:41;;;;7019:15;:24;7035:7;7019:24;;;;;;;;;;;7012:31;;;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;3588:37;;3663:7;3636:12;:16;3649:2;3636:16;;;;;;;;;;;;;;;:24;3653:6;3636:24;;;;;;;;;;;:34;;;;3710:6;3681:17;:26;3699:7;3681:26;;;;;;;;;;;:35;;;;3577:147;3503:221;;:::o;9357:382:5:-;9451:1;9437:16;;:2;:16;;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:15:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:323::-;8518:6;8567:2;8555:9;8546:7;8542:23;8538:32;8535:119;;;8573:79;;:::i;:::-;8535:119;8693:1;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8664:114;8462:323;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11734:568::-;11807:8;11817:6;11867:3;11860:4;11852:6;11848:17;11844:27;11834:122;;11875:79;;:::i;:::-;11834:122;11988:6;11975:20;11965:30;;12018:18;12010:6;12007:30;12004:117;;;12040:79;;:::i;:::-;12004:117;12154:4;12146:6;12142:17;12130:29;;12208:3;12200:4;12192:6;12188:17;12178:8;12174:32;12171:41;12168:128;;;12215:79;;:::i;:::-;12168:128;11734:568;;;;;:::o;12308:559::-;12394:6;12402;12451:2;12439:9;12430:7;12426:23;12422:32;12419:119;;;12457:79;;:::i;:::-;12419:119;12605:1;12594:9;12590:17;12577:31;12635:18;12627:6;12624:30;12621:117;;;12657:79;;:::i;:::-;12621:117;12770:80;12842:7;12833:6;12822:9;12818:22;12770:80;:::i;:::-;12752:98;;;;12548:312;12308:559;;;;;:::o;12873:474::-;12941:6;12949;12998:2;12986:9;12977:7;12973:23;12969:32;12966:119;;;13004:79;;:::i;:::-;12966:119;13124:1;13149:53;13194:7;13185:6;13174:9;13170:22;13149:53;:::i;:::-;13139:63;;13095:117;13251:2;13277:53;13322:7;13313:6;13302:9;13298:22;13277:53;:::i;:::-;13267:63;;13222:118;12873:474;;;;;:::o;13353:180::-;13401:77;13398:1;13391:88;13498:4;13495:1;13488:15;13522:4;13519:1;13512:15;13539:320;13583:6;13620:1;13614:4;13610:12;13600:22;;13667:1;13661:4;13657:12;13688:18;13678:81;;13744:4;13736:6;13732:17;13722:27;;13678:81;13806:2;13798:6;13795:14;13775:18;13772:38;13769:84;;;13825:18;;:::i;:::-;13769:84;13590:269;13539:320;;;:::o;13865:231::-;14005:34;14001:1;13993:6;13989:14;13982:58;14074:14;14069:2;14061:6;14057:15;14050:39;13865:231;:::o;14102:366::-;14244:3;14265:67;14329:2;14324:3;14265:67;:::i;:::-;14258:74;;14341:93;14430:3;14341:93;:::i;:::-;14459:2;14454:3;14450:12;14443:19;;14102:366;;;:::o;14474:419::-;14640:4;14678:2;14667:9;14663:18;14655:26;;14727:9;14721:4;14717:20;14713:1;14702:9;14698:17;14691:47;14755:131;14881:4;14755:131;:::i;:::-;14747:139;;14474:419;;;:::o;14899:220::-;15039:34;15035:1;15027:6;15023:14;15016:58;15108:3;15103:2;15095:6;15091:15;15084:28;14899:220;:::o;15125:366::-;15267:3;15288:67;15352:2;15347:3;15288:67;:::i;:::-;15281:74;;15364:93;15453:3;15364:93;:::i;:::-;15482:2;15477:3;15473:12;15466:19;;15125:366;;;:::o;15497:419::-;15663:4;15701:2;15690:9;15686:18;15678:26;;15750:9;15744:4;15740:20;15736:1;15725:9;15721:17;15714:47;15778:131;15904:4;15778:131;:::i;:::-;15770:139;;15497:419;;;:::o;15922:243::-;16062:34;16058:1;16050:6;16046:14;16039:58;16131:26;16126:2;16118:6;16114:15;16107:51;15922:243;:::o;16171:366::-;16313:3;16334:67;16398:2;16393:3;16334:67;:::i;:::-;16327:74;;16410:93;16499:3;16410:93;:::i;:::-;16528:2;16523:3;16519:12;16512:19;;16171:366;;;:::o;16543:419::-;16709:4;16747:2;16736:9;16732:18;16724:26;;16796:9;16790:4;16786:20;16782:1;16771:9;16767:17;16760:47;16824:131;16950:4;16824:131;:::i;:::-;16816:139;;16543:419;;;:::o;16968:236::-;17108:34;17104:1;17096:6;17092:14;17085:58;17177:19;17172:2;17164:6;17160:15;17153:44;16968:236;:::o;17210:366::-;17352:3;17373:67;17437:2;17432:3;17373:67;:::i;:::-;17366:74;;17449:93;17538:3;17449:93;:::i;:::-;17567:2;17562:3;17558:12;17551:19;;17210:366;;;:::o;17582:419::-;17748:4;17786:2;17775:9;17771:18;17763:26;;17835:9;17829:4;17825:20;17821:1;17810:9;17806:17;17799:47;17863:131;17989:4;17863:131;:::i;:::-;17855:139;;17582:419;;;:::o;18007:230::-;18147:34;18143:1;18135:6;18131:14;18124:58;18216:13;18211:2;18203:6;18199:15;18192:38;18007:230;:::o;18243:366::-;18385:3;18406:67;18470:2;18465:3;18406:67;:::i;:::-;18399:74;;18482:93;18571:3;18482:93;:::i;:::-;18600:2;18595:3;18591:12;18584:19;;18243:366;;;:::o;18615:419::-;18781:4;18819:2;18808:9;18804:18;18796:26;;18868:9;18862:4;18858:20;18854:1;18843:9;18839:17;18832:47;18896:131;19022:4;18896:131;:::i;:::-;18888:139;;18615:419;;;:::o;19040:182::-;19180:34;19176:1;19168:6;19164:14;19157:58;19040:182;:::o;19228:366::-;19370:3;19391:67;19455:2;19450:3;19391:67;:::i;:::-;19384:74;;19467:93;19556:3;19467:93;:::i;:::-;19585:2;19580:3;19576:12;19569:19;;19228:366;;;:::o;19600:419::-;19766:4;19804:2;19793:9;19789:18;19781:26;;19853:9;19847:4;19843:20;19839:1;19828:9;19824:17;19817:47;19881:131;20007:4;19881:131;:::i;:::-;19873:139;;19600:419;;;:::o;20025:180::-;20073:77;20070:1;20063:88;20170:4;20167:1;20160:15;20194:4;20191:1;20184:15;20211:348;20251:7;20274:20;20292:1;20274:20;:::i;:::-;20269:25;;20308:20;20326:1;20308:20;:::i;:::-;20303:25;;20496:1;20428:66;20424:74;20421:1;20418:81;20413:1;20406:9;20399:17;20395:105;20392:131;;;20503:18;;:::i;:::-;20392:131;20551:1;20548;20544:9;20533:20;;20211:348;;;;:::o;20565:180::-;20613:77;20610:1;20603:88;20710:4;20707:1;20700:15;20734:4;20731:1;20724:15;20751:185;20791:1;20808:20;20826:1;20808:20;:::i;:::-;20803:25;;20842:20;20860:1;20842:20;:::i;:::-;20837:25;;20881:1;20871:35;;20886:18;;:::i;:::-;20871:35;20928:1;20925;20921:9;20916:14;;20751:185;;;;:::o;20942:231::-;21082:34;21078:1;21070:6;21066:14;21059:58;21151:14;21146:2;21138:6;21134:15;21127:39;20942:231;:::o;21179:366::-;21321:3;21342:67;21406:2;21401:3;21342:67;:::i;:::-;21335:74;;21418:93;21507:3;21418:93;:::i;:::-;21536:2;21531:3;21527:12;21520:19;;21179:366;;;:::o;21551:419::-;21717:4;21755:2;21744:9;21740:18;21732:26;;21804:9;21798:4;21794:20;21790:1;21779:9;21775:17;21768:47;21832:131;21958:4;21832:131;:::i;:::-;21824:139;;21551:419;;;:::o;21976:180::-;22024:77;22021:1;22014:88;22121:4;22118:1;22111:15;22145:4;22142:1;22135:15;22162:228;22302:34;22298:1;22290:6;22286:14;22279:58;22371:11;22366:2;22358:6;22354:15;22347:36;22162:228;:::o;22396:366::-;22538:3;22559:67;22623:2;22618:3;22559:67;:::i;:::-;22552:74;;22635:93;22724:3;22635:93;:::i;:::-;22753:2;22748:3;22744:12;22737:19;;22396:366;;;:::o;22768:419::-;22934:4;22972:2;22961:9;22957:18;22949:26;;23021:9;23015:4;23011:20;23007:1;22996:9;22992:17;22985:47;23049:131;23175:4;23049:131;:::i;:::-;23041:139;;22768:419;;;:::o;23193:229::-;23333:34;23329:1;23321:6;23317:14;23310:58;23402:12;23397:2;23389:6;23385:15;23378:37;23193:229;:::o;23428:366::-;23570:3;23591:67;23655:2;23650:3;23591:67;:::i;:::-;23584:74;;23667:93;23756:3;23667:93;:::i;:::-;23785:2;23780:3;23776:12;23769:19;;23428:366;;;:::o;23800:419::-;23966:4;24004:2;23993:9;23989:18;23981:26;;24053:9;24047:4;24043:20;24039:1;24028:9;24024:17;24017:47;24081:131;24207:4;24081:131;:::i;:::-;24073:139;;23800:419;;;:::o;24225:172::-;24365:24;24361:1;24353:6;24349:14;24342:48;24225:172;:::o;24403:366::-;24545:3;24566:67;24630:2;24625:3;24566:67;:::i;:::-;24559:74;;24642:93;24731:3;24642:93;:::i;:::-;24760:2;24755:3;24751:12;24744:19;;24403:366;;;:::o;24775:419::-;24941:4;24979:2;24968:9;24964:18;24956:26;;25028:9;25022:4;25018:20;25014:1;25003:9;24999:17;24992:47;25056:131;25182:4;25056:131;:::i;:::-;25048:139;;24775:419;;;:::o;25200:177::-;25340:29;25336:1;25328:6;25324:14;25317:53;25200:177;:::o;25383:366::-;25525:3;25546:67;25610:2;25605:3;25546:67;:::i;:::-;25539:74;;25622:93;25711:3;25622:93;:::i;:::-;25740:2;25735:3;25731:12;25724:19;;25383:366;;;:::o;25755:419::-;25921:4;25959:2;25948:9;25944:18;25936:26;;26008:9;26002:4;25998:20;25994:1;25983:9;25979:17;25972:47;26036:131;26162:4;26036:131;:::i;:::-;26028:139;;25755:419;;;:::o;26180:181::-;26320:33;26316:1;26308:6;26304:14;26297:57;26180:181;:::o;26367:366::-;26509:3;26530:67;26594:2;26589:3;26530:67;:::i;:::-;26523:74;;26606:93;26695:3;26606:93;:::i;:::-;26724:2;26719:3;26715:12;26708:19;;26367:366;;;:::o;26739:419::-;26905:4;26943:2;26932:9;26928:18;26920:26;;26992:9;26986:4;26982:20;26978:1;26967:9;26963:17;26956:47;27020:131;27146:4;27020:131;:::i;:::-;27012:139;;26739:419;;;:::o;27164:182::-;27304:34;27300:1;27292:6;27288:14;27281:58;27164:182;:::o;27352:366::-;27494:3;27515:67;27579:2;27574:3;27515:67;:::i;:::-;27508:74;;27591:93;27680:3;27591:93;:::i;:::-;27709:2;27704:3;27700:12;27693:19;;27352:366;;;:::o;27724:419::-;27890:4;27928:2;27917:9;27913:18;27905:26;;27977:9;27971:4;27967:20;27963:1;27952:9;27948:17;27941:47;28005:131;28131:4;28005:131;:::i;:::-;27997:139;;27724:419;;;:::o;28149:305::-;28189:3;28208:20;28226:1;28208:20;:::i;:::-;28203:25;;28242:20;28260:1;28242:20;:::i;:::-;28237:25;;28396:1;28328:66;28324:74;28321:1;28318:81;28315:107;;;28402:18;;:::i;:::-;28315:107;28446:1;28443;28439:9;28432:16;;28149:305;;;;:::o;28460:182::-;28600:34;28596:1;28588:6;28584:14;28577:58;28460:182;:::o;28648:366::-;28790:3;28811:67;28875:2;28870:3;28811:67;:::i;:::-;28804:74;;28887:93;28976:3;28887:93;:::i;:::-;29005:2;29000:3;28996:12;28989:19;;28648:366;;;:::o;29020:419::-;29186:4;29224:2;29213:9;29209:18;29201:26;;29273:9;29267:4;29263:20;29259:1;29248:9;29244:17;29237:47;29301:131;29427:4;29301:131;:::i;:::-;29293:139;;29020:419;;;:::o;29445:178::-;29585:30;29581:1;29573:6;29569:14;29562:54;29445:178;:::o;29629:366::-;29771:3;29792:67;29856:2;29851:3;29792:67;:::i;:::-;29785:74;;29868:93;29957:3;29868:93;:::i;:::-;29986:2;29981:3;29977:12;29970:19;;29629:366;;;:::o;30001:419::-;30167:4;30205:2;30194:9;30190:18;30182:26;;30254:9;30248:4;30244:20;30240:1;30229:9;30225:17;30218:47;30282:131;30408:4;30282:131;:::i;:::-;30274:139;;30001:419;;;:::o;30426:233::-;30465:3;30488:24;30506:5;30488:24;:::i;:::-;30479:33;;30534:66;30527:5;30524:77;30521:103;;;30604:18;;:::i;:::-;30521:103;30651:1;30644:5;30640:13;30633:20;;30426:233;;;:::o;30665:175::-;30805:27;30801:1;30793:6;30789:14;30782:51;30665:175;:::o;30846:366::-;30988:3;31009:67;31073:2;31068:3;31009:67;:::i;:::-;31002:74;;31085:93;31174:3;31085:93;:::i;:::-;31203:2;31198:3;31194:12;31187:19;;30846:366;;;:::o;31218:419::-;31384:4;31422:2;31411:9;31407:18;31399:26;;31471:9;31465:4;31461:20;31457:1;31446:9;31442:17;31435:47;31499:131;31625:4;31499:131;:::i;:::-;31491:139;;31218:419;;;:::o;31643:170::-;31783:22;31779:1;31771:6;31767:14;31760:46;31643:170;:::o;31819:366::-;31961:3;31982:67;32046:2;32041:3;31982:67;:::i;:::-;31975:74;;32058:93;32147:3;32058:93;:::i;:::-;32176:2;32171:3;32167:12;32160:19;;31819:366;;;:::o;32191:419::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;32616:148::-;32718:11;32755:3;32740:18;;32616:148;;;;:::o;32770:377::-;32876:3;32904:39;32937:5;32904:39;:::i;:::-;32959:89;33041:6;33036:3;32959:89;:::i;:::-;32952:96;;33057:52;33102:6;33097:3;33090:4;33083:5;33079:16;33057:52;:::i;:::-;33134:6;33129:3;33125:16;33118:23;;32880:267;32770:377;;;;:::o;33153:435::-;33333:3;33355:95;33446:3;33437:6;33355:95;:::i;:::-;33348:102;;33467:95;33558:3;33549:6;33467:95;:::i;:::-;33460:102;;33579:3;33572:10;;33153:435;;;;;:::o;33594:178::-;33734:30;33730:1;33722:6;33718:14;33711:54;33594:178;:::o;33778:366::-;33920:3;33941:67;34005:2;34000:3;33941:67;:::i;:::-;33934:74;;34017:93;34106:3;34017:93;:::i;:::-;34135:2;34130:3;34126:12;34119:19;;33778:366;;;:::o;34150:419::-;34316:4;34354:2;34343:9;34339:18;34331:26;;34403:9;34397:4;34393:20;34389:1;34378:9;34374:17;34367:47;34431:131;34557:4;34431:131;:::i;:::-;34423:139;;34150:419;;;:::o;34575:225::-;34715:34;34711:1;34703:6;34699:14;34692:58;34784:8;34779:2;34771:6;34767:15;34760:33;34575:225;:::o;34806:366::-;34948:3;34969:67;35033:2;35028:3;34969:67;:::i;:::-;34962:74;;35045:93;35134:3;35045:93;:::i;:::-;35163:2;35158:3;35154:12;35147:19;;34806:366;;;:::o;35178:419::-;35344:4;35382:2;35371:9;35367:18;35359:26;;35431:9;35425:4;35421:20;35417:1;35406:9;35402:17;35395:47;35459:131;35585:4;35459:131;:::i;:::-;35451:139;;35178:419;;;:::o;35603:231::-;35743:34;35739:1;35731:6;35727:14;35720:58;35812:14;35807:2;35799:6;35795:15;35788:39;35603:231;:::o;35840:366::-;35982:3;36003:67;36067:2;36062:3;36003:67;:::i;:::-;35996:74;;36079:93;36168:3;36079:93;:::i;:::-;36197:2;36192:3;36188:12;36181:19;;35840:366;;;:::o;36212:419::-;36378:4;36416:2;36405:9;36401:18;36393:26;;36465:9;36459:4;36455:20;36451:1;36440:9;36436:17;36429:47;36493:131;36619:4;36493:131;:::i;:::-;36485:139;;36212:419;;;:::o;36637:228::-;36777:34;36773:1;36765:6;36761:14;36754:58;36846:11;36841:2;36833:6;36829:15;36822:36;36637:228;:::o;36871:366::-;37013:3;37034:67;37098:2;37093:3;37034:67;:::i;:::-;37027:74;;37110:93;37199:3;37110:93;:::i;:::-;37228:2;37223:3;37219:12;37212:19;;36871:366;;;:::o;37243:419::-;37409:4;37447:2;37436:9;37432:18;37424:26;;37496:9;37490:4;37486:20;37482:1;37471:9;37467:17;37460:47;37524:131;37650:4;37524:131;:::i;:::-;37516:139;;37243:419;;;:::o;37668:223::-;37808:34;37804:1;37796:6;37792:14;37785:58;37877:6;37872:2;37864:6;37860:15;37853:31;37668:223;:::o;37897:366::-;38039:3;38060:67;38124:2;38119:3;38060:67;:::i;:::-;38053:74;;38136:93;38225:3;38136:93;:::i;:::-;38254:2;38249:3;38245:12;38238:19;;37897:366;;;:::o;38269:419::-;38435:4;38473:2;38462:9;38458:18;38450:26;;38522:9;38516:4;38512:20;38508:1;38497:9;38493:17;38486:47;38550:131;38676:4;38550:131;:::i;:::-;38542:139;;38269:419;;;:::o;38694:191::-;38734:4;38754:20;38772:1;38754:20;:::i;:::-;38749:25;;38788:20;38806:1;38788:20;:::i;:::-;38783:25;;38827:1;38824;38821:8;38818:34;;;38832:18;;:::i;:::-;38818:34;38877:1;38874;38870:9;38862:17;;38694:191;;;;:::o;38891:237::-;39031:34;39027:1;39019:6;39015:14;39008:58;39100:20;39095:2;39087:6;39083:15;39076:45;38891:237;:::o;39134:366::-;39276:3;39297:67;39361:2;39356:3;39297:67;:::i;:::-;39290:74;;39373:93;39462:3;39373:93;:::i;:::-;39491:2;39486:3;39482:12;39475:19;;39134:366;;;:::o;39506:419::-;39672:4;39710:2;39699:9;39695:18;39687:26;;39759:9;39753:4;39749:20;39745:1;39734:9;39730:17;39723:47;39787:131;39913:4;39787:131;:::i;:::-;39779:139;;39506:419;;;:::o;39931:176::-;39963:1;39980:20;39998:1;39980:20;:::i;:::-;39975:25;;40014:20;40032:1;40014:20;:::i;:::-;40009:25;;40053:1;40043:35;;40058:18;;:::i;:::-;40043:35;40099:1;40096;40092:9;40087:14;;39931:176;;;;:::o;40113:98::-;40164:6;40198:5;40192:12;40182:22;;40113:98;;;:::o;40217:168::-;40300:11;40334:6;40329:3;40322:19;40374:4;40369:3;40365:14;40350:29;;40217:168;;;;:::o;40391:360::-;40477:3;40505:38;40537:5;40505:38;:::i;:::-;40559:70;40622:6;40617:3;40559:70;:::i;:::-;40552:77;;40638:52;40683:6;40678:3;40671:4;40664:5;40660:16;40638:52;:::i;:::-;40715:29;40737:6;40715:29;:::i;:::-;40710:3;40706:39;40699:46;;40481:270;40391:360;;;;:::o;40757:640::-;40952:4;40990:3;40979:9;40975:19;40967:27;;41004:71;41072:1;41061:9;41057:17;41048:6;41004:71;:::i;:::-;41085:72;41153:2;41142:9;41138:18;41129:6;41085:72;:::i;:::-;41167;41235:2;41224:9;41220:18;41211:6;41167:72;:::i;:::-;41286:9;41280:4;41276:20;41271:2;41260:9;41256:18;41249:48;41314:76;41385:4;41376:6;41314:76;:::i;:::-;41306:84;;40757:640;;;;;;;:::o;41403:141::-;41459:5;41490:6;41484:13;41475:22;;41506:32;41532:5;41506:32;:::i;:::-;41403:141;;;;:::o;41550:349::-;41619:6;41668:2;41656:9;41647:7;41643:23;41639:32;41636:119;;;41674:79;;:::i;:::-;41636:119;41794:1;41819:63;41874:7;41865:6;41854:9;41850:22;41819:63;:::i;:::-;41809:73;;41765:127;41550:349;;;;:::o;41905:180::-;41953:77;41950:1;41943:88;42050:4;42047:1;42040:15;42074:4;42071:1;42064:15;42091:182;42231:34;42227:1;42219:6;42215:14;42208:58;42091:182;:::o;42279:366::-;42421:3;42442:67;42506:2;42501:3;42442:67;:::i;:::-;42435:74;;42518:93;42607:3;42518:93;:::i;:::-;42636:2;42631:3;42627:12;42620:19;;42279:366;;;:::o;42651:419::-;42817:4;42855:2;42844:9;42840:18;42832:26;;42904:9;42898:4;42894:20;42890:1;42879:9;42875:17;42868:47;42932:131;43058:4;42932:131;:::i;:::-;42924:139;;42651:419;;;:::o;43076:178::-;43216:30;43212:1;43204:6;43200:14;43193:54;43076:178;:::o;43260:366::-;43402:3;43423:67;43487:2;43482:3;43423:67;:::i;:::-;43416:74;;43499:93;43588:3;43499:93;:::i;:::-;43617:2;43612:3;43608:12;43601:19;;43260:366;;;:::o;43632:419::-;43798:4;43836:2;43825:9;43821:18;43813:26;;43885:9;43879:4;43875:20;43871:1;43860:9;43856:17;43849:47;43913:131;44039:4;43913:131;:::i;:::-;43905:139;;43632:419;;;:::o

Swarm Source

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