ETH Price: $2,632.82 (+0.07%)
Gas: 7 Gwei

Token

Crypto Elves (ELVS)
 

Overview

Max Total Supply

5,000 ELVS

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ELVS
0xea8b25ccb8b217fafd61b6e130f8671a5131a7f7
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:
CryptoElves

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 4 of 13: CryptoElves.sol
// SPDX-License-Identifier: UNNLICENSED
pragma solidity 0.8.0;

import "./ERC721.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./ReentrancyGuard.sol";
contract CryptoElves is ERC721, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    
    // Starts at 0 
    Counters.Counter ID;

    // Max supply 
    uint256 maxSupply = 5000;

    // Price Per Elf
    uint256 public price;
    uint256 public whitelistPrice;
    
    // The address to receive payment from sales
    address payable payee1; // Receives 80% of primary sales
    address payable payee2; // Receives 10% of primary sales
    address payable payee3; // Receives 10% of primary sales
    
    // Event to emit upon purchase 
    event mint(uint256 id, address mintFrom, address mintTo);
    

    // whitelist mapping
    mapping(address => bool) public whitelisted;

    // Initial NFT drop recipients
    address recipient = 0x5A2441b4f359FC5525a1F21C0aa65510eF96C80C;

    constructor(
        string memory name, 
        string memory symbol, 
        uint256 _price, 
        uint256 _wlPrice,
        address payable _payee1,
        address payable _payee2, 
        address payable _payee3
    ) 
    ERC721(name, symbol) 
    {
        payee1 = _payee1;
        payee2 = _payee2;
        payee3 = _payee3;
        price = _price; 
        whitelistPrice = _wlPrice;
        URI = "https://us-central1-crypto-elves.cloudfunctions.net/get-metadata?tokenid=";
        
        for(uint256 i = 0; i < 50; i++) {
            uint256 currID = Counters.current(ID);

            // Increment ID counter
            Counters.increment(ID);
            
            // Mint NFT to user wallet
            _mint(recipient, currID);
            emit mint(currID, address(this), recipient);
        }
    }
    
    function buy(uint256 amount) public payable nonReentrant {
        require(Counters.current(ID) + amount < maxSupply, "Not enough Elves left");
        if(!whitelisted[_msgSender()]) {
            require(msg.value == price * amount, "Incorrect amount of ETH sent");
            require(amount <= 10, "Maximum 10 per purchase");
        } else {
            require(msg.value == whitelistPrice, "Incorrect amount of ETH sent");
            require(amount >= 1, "Can only buy one at whitelist price");
            whitelisted[_msgSender()] = false;
        }
        
        uint256 tenPC = msg.value / 10;
        uint256 eightyPC = msg.value - (tenPC * 2);

        // Pay payees
        (bool success,) = payee1.call{value: eightyPC}("");
        require(success, "Transfer fail");

        (bool successs,) = payee2.call{value: tenPC}("");
        require(successs, "Transfer fail");

        (bool successss,) = payee3.call{value: tenPC}("");
        require(successss, "Transfer fail");
        
        for(uint256 i = 0; i < amount; i++) {
            uint256 currID = Counters.current(ID);
            
            // Increment ID counter
            Counters.increment(ID);
            
            // Mint NFT to user wallet
            _mint(_msgSender(), currID);
            emit mint(currID, address(this), _msgSender());
        }
    }

    function mintTo(uint amount, address _recipient) public onlyOwner {
        require(Counters.current(ID) + amount < maxSupply, "Not enough Elves left");
        
        for(uint256 i = 0; i < amount; i++) {
                uint256 currID = Counters.current(ID);

                // Increment ID counter
                Counters.increment(ID);
                
                // Mint NFT to user wallet
                _mint(_recipient, currID);
                emit mint(currID, address(this), _recipient);
        }
    }
    
    function changePrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function changeWLPrice(uint256 newPrice) public onlyOwner {
        whitelistPrice = newPrice;
    }

    function totalSupply() public view returns(uint256) {
        return maxSupply; 
    }

    function changePayee1(address payable newPayee1) public onlyOwner {
        payee1 = newPayee1;
    }

    function changePayee2(address payable newPayee2) public onlyOwner {
        payee2 = newPayee2;
    }

    function changePayee3(address payable newPayee3) public onlyOwner {
        payee3 = newPayee3;
    }

    function withdraw() public onlyOwner{
        (bool success,) = _msgSender().call{value: address(this).balance}("");
        require(success, "Transfer fail");
    }

    function setURI(string memory _uri) public onlyOwner {
        URI = _uri;
    }

    function addToWhitelist(address whitelistedAddress) public onlyOwner {
        whitelisted[whitelistedAddress] = true;
    }
}

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

pragma solidity 0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity 0.8.0;

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

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

File 3 of 13: Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
import "./Ownable.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.
     */
    string URI;
    function _baseURI() internal view virtual returns (string memory) {
        return URI;
    }

    /**
     * @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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.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 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_wlPrice","type":"uint256"},{"internalType":"address payable","name":"_payee1","type":"address"},{"internalType":"address payable","name":"_payee2","type":"address"},{"internalType":"address payable","name":"_payee3","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"mintFrom","type":"address"},{"indexed":false,"internalType":"address","name":"mintTo","type":"address"}],"name":"mint","type":"event"},{"inputs":[{"internalType":"address","name":"whitelistedAddress","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPayee1","type":"address"}],"name":"changePayee1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPayee2","type":"address"}],"name":"changePayee2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPayee3","type":"address"}],"name":"changePayee3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changeWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"setURI","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":"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":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611388600a55735a2441b4f359fc5525a1f21c0aa65510ef96c80c601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006c57600080fd5b5060405162004cb938038062004cb9833981810160405281019062000092919062000783565b86868160009080519060200190620000ac92919062000633565b508060019080519060200190620000c592919062000633565b505050620000e8620000dc620002ea60201b60201c565b620002f260201b60201c565b600160088190555082600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600b8190555083600c8190555060405180608001604052806049815260200162004c706049913960069080519060200190620001f292919062000633565b5060005b6032811015620002dc576000620002196009620003b860201b62001d171760201c565b9050620002326009620003c660201b62001d251760201c565b62000266601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682620003dc60201b60201c565b7fda39b3e7555c01a472d3b5de708f98e5ab5465426a4a10a772cb25bad00af0b18130601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051620002bd939291906200094c565b60405180910390a1508080620002d39062000b1c565b915050620001f6565b505050505050505062000c2b565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200044f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000446906200092a565b60405180910390fd5b6200046081620005c260201b60201c565b15620004a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049a9062000908565b60405180910390fd5b620004b7600083836200062e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000509919062000a01565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b828054620006419062000ae6565b90600052602060002090601f016020900481019282620006655760008555620006b1565b82601f106200068057805160ff1916838001178555620006b1565b82800160010185558215620006b1579182015b82811115620006b057825182559160200191906001019062000693565b5b509050620006c09190620006c4565b5090565b5b80821115620006df576000816000905550600101620006c5565b5090565b6000620006fa620006f484620009bd565b62000989565b9050828152602081018484840111156200071357600080fd5b6200072084828562000ab0565b509392505050565b600081519050620007398162000bf7565b92915050565b600082601f8301126200075157600080fd5b815162000763848260208601620006e3565b91505092915050565b6000815190506200077d8162000c11565b92915050565b600080600080600080600060e0888a0312156200079f57600080fd5b600088015167ffffffffffffffff811115620007ba57600080fd5b620007c88a828b016200073f565b975050602088015167ffffffffffffffff811115620007e657600080fd5b620007f48a828b016200073f565b9650506040620008078a828b016200076c565b95505060606200081a8a828b016200076c565b94505060806200082d8a828b0162000728565b93505060a0620008408a828b0162000728565b92505060c0620008538a828b0162000728565b91505092959891949750929550565b6200086d8162000a5e565b82525050565b600062000882601c83620009f0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000620008c4602083620009f0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b620009028162000aa6565b82525050565b60006020820190508181036000830152620009238162000873565b9050919050565b600060208201905081810360008301526200094581620008b5565b9050919050565b6000606082019050620009636000830186620008f7565b62000972602083018562000862565b62000981604083018462000862565b949350505050565b6000604051905081810181811067ffffffffffffffff82111715620009b357620009b262000bc8565b5b8060405250919050565b600067ffffffffffffffff821115620009db57620009da62000bc8565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b600062000a0e8262000aa6565b915062000a1b8362000aa6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a535762000a5262000b6a565b5b828201905092915050565b600062000a6b8262000a86565b9050919050565b600062000a7f8262000a86565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ad057808201518184015260208101905062000ab3565b8381111562000ae0576000848401525b50505050565b6000600282049050600182168062000aff57607f821691505b6020821081141562000b165762000b1562000b99565b5b50919050565b600062000b298262000aa6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b5f5762000b5e62000b6a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000c028162000a72565b811462000c0e57600080fd5b50565b62000c1c8162000aa6565b811462000c2857600080fd5b50565b6140358062000c3b6000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063e43252d711610064578063e43252d71461064d578063e985e9c514610676578063f2fde38b146106b3578063fc1a1c36146106dc576101cd565b8063b88d4fde1461058e578063c87b56dd146105b7578063d936547e146105f4578063d96a094a14610631576101cd565b8063a035b1fe116100d1578063a035b1fe146104e8578063a22cb46514610513578063a2b40d191461053c578063b723b34e14610565576101cd565b80638da5cb5b14610469578063905ebf631461049457806395d89b41146104bd576101cd565b80633ccfd60b1161016f57806370a082311161013e57806370a08231146103c3578063715018a61461040057806389b08d88146104175780638b1a79fe14610440576101cd565b80633ccfd60b1461031d57806342842e0e146103345780634558f47b1461035d5780636352211e14610386576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806302fe53051461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e18565b610707565b6040516102069190613808565b60405180910390f35b34801561021b57600080fd5b5061023660048036038101906102319190612e6a565b6107e9565b005b34801561024457600080fd5b5061024d61087f565b60405161025a9190613823565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612eab565b610911565b60405161029791906137a1565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612ddc565b610996565b005b3480156102d557600080fd5b506102de610aae565b6040516102eb9190613b05565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612cd6565b610ab8565b005b34801561032957600080fd5b50610332610b18565b005b34801561034057600080fd5b5061035b60048036038101906103569190612cd6565b610c4a565b005b34801561036957600080fd5b50610384600480360381019061037f9190612c71565b610c6a565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612eab565b610d2a565b6040516103ba91906137a1565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190612c48565b610ddc565b6040516103f79190613b05565b60405180910390f35b34801561040c57600080fd5b50610415610e94565b005b34801561042357600080fd5b5061043e60048036038101906104399190612c71565b610f1c565b005b34801561044c57600080fd5b5061046760048036038101906104629190612eab565b610fdc565b005b34801561047557600080fd5b5061047e611062565b60405161048b91906137a1565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612c71565b61108c565b005b3480156104c957600080fd5b506104d261114c565b6040516104df9190613823565b60405180910390f35b3480156104f457600080fd5b506104fd6111de565b60405161050a9190613b05565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612da0565b6111e4565b005b34801561054857600080fd5b50610563600480360381019061055e9190612eab565b6111fa565b005b34801561057157600080fd5b5061058c60048036038101906105879190612ed4565b611280565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612d25565b6113d5565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612eab565b611437565b6040516105eb9190613823565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612c48565b6114de565b6040516106289190613808565b60405180910390f35b61064b60048036038101906106469190612eab565b6114fe565b005b34801561065957600080fd5b50610674600480360381019061066f9190612c48565b611aae565b005b34801561068257600080fd5b5061069d60048036038101906106989190612c9a565b611b85565b6040516106aa9190613808565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190612c48565b611c19565b005b3480156106e857600080fd5b506106f1611d11565b6040516106fe9190613b05565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e257506107e182611d3b565b5b9050919050565b6107f1611da5565b73ffffffffffffffffffffffffffffffffffffffff1661080f611062565b73ffffffffffffffffffffffffffffffffffffffff1614610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90613a25565b60405180910390fd5b806006908051906020019061087b929190612a57565b5050565b60606000805461088e90613e13565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90613e13565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b600061091c82611dad565b61095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290613a05565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a182610d2a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0990613a85565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611da5565b73ffffffffffffffffffffffffffffffffffffffff161480610a605750610a5f81610a5a611da5565b611b85565b5b610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690613965565b60405180910390fd5b610aa98383611e19565b505050565b6000600a54905090565b610ac9610ac3611da5565b82611ed2565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613aa5565b60405180910390fd5b610b13838383611fb0565b505050565b610b20611da5565b73ffffffffffffffffffffffffffffffffffffffff16610b3e611062565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613a25565b60405180910390fd5b6000610b9e611da5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bc19061378c565b60006040518083038185875af1925050503d8060008114610bfe576040519150601f19603f3d011682016040523d82523d6000602084013e610c03565b606091505b5050905080610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613865565b60405180910390fd5b50565b610c65838383604051806020016040528060008152506113d5565b505050565b610c72611da5565b73ffffffffffffffffffffffffffffffffffffffff16610c90611062565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613a25565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906139a5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490613985565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9c611da5565b73ffffffffffffffffffffffffffffffffffffffff16610eba611062565b73ffffffffffffffffffffffffffffffffffffffff1614610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613a25565b60405180910390fd5b610f1a600061220c565b565b610f24611da5565b73ffffffffffffffffffffffffffffffffffffffff16610f42611062565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90613a25565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610fe4611da5565b73ffffffffffffffffffffffffffffffffffffffff16611002611062565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613a25565b60405180910390fd5b80600c8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611094611da5565b73ffffffffffffffffffffffffffffffffffffffff166110b2611062565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613a25565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606001805461115b90613e13565b80601f016020809104026020016040519081016040528092919081815260200182805461118790613e13565b80156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b5050505050905090565b600b5481565b6111f66111ef611da5565b83836122d2565b5050565b611202611da5565b73ffffffffffffffffffffffffffffffffffffffff16611220611062565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613a25565b60405180910390fd5b80600b8190555050565b611288611da5565b73ffffffffffffffffffffffffffffffffffffffff166112a6611062565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613a25565b60405180910390fd5b600a548261130a6009611d17565b6113149190613c36565b10611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613ac5565b60405180910390fd5b60005b828110156113d057600061136b6009611d17565b90506113776009611d25565b611381838261243f565b7fda39b3e7555c01a472d3b5de708f98e5ab5465426a4a10a772cb25bad00af0b18130856040516113b493929190613b20565b60405180910390a15080806113c890613e45565b915050611357565b505050565b6113e66113e0611da5565b83611ed2565b611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613aa5565b60405180910390fd5b6114318484848461260d565b50505050565b606061144282611dad565b611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613a65565b60405180910390fd5b600061148b612669565b905060008151116114ab57604051806020016040528060008152506114d6565b806114b5846126fb565b6040516020016114c6929190613768565b6040516020818303038152906040525b915050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b60026008541415611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613ae5565b60405180910390fd5b6002600881905550600a548161155a6009611d17565b6115649190613c36565b106115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613ac5565b60405180910390fd5b601060006115b0611da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116945780600b5461160a9190613cbd565b341461164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290613845565b60405180910390fd5b600a81111561168f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611686906139e5565b60405180910390fd5b61177c565b600c5434146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613845565b60405180910390fd5b600181101561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613925565b60405180910390fd5b60006010600061172a611da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000600a3461178b9190613c8c565b9050600060028261179c9190613cbd565b346117a79190613d17565b90506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516117f19061378c565b60006040518083038185875af1925050503d806000811461182e576040519150601f19603f3d011682016040523d82523d6000602084013e611833565b606091505b5050905080611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613865565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516118bf9061378c565b60006040518083038185875af1925050503d80600081146118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b5050905080611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90613865565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168560405161198d9061378c565b60006040518083038185875af1925050503d80600081146119ca576040519150601f19603f3d011682016040523d82523d6000602084013e6119cf565b606091505b5050905080611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613865565b60405180910390fd5b60005b86811015611a9d576000611a2a6009611d17565b9050611a366009611d25565b611a47611a41611da5565b8261243f565b7fda39b3e7555c01a472d3b5de708f98e5ab5465426a4a10a772cb25bad00af0b18130611a72611da5565b604051611a8193929190613b20565b60405180910390a1508080611a9590613e45565b915050611a16565b505050505050600160088190555050565b611ab6611da5565b73ffffffffffffffffffffffffffffffffffffffff16611ad4611062565b73ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190613a25565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c21611da5565b73ffffffffffffffffffffffffffffffffffffffff16611c3f611062565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc906138a5565b60405180910390fd5b611d0e8161220c565b50565b600c5481565b600081600001549050919050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e8c83610d2a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611edd82611dad565b611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613945565b60405180910390fd5b6000611f2783610d2a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9657508373ffffffffffffffffffffffffffffffffffffffff16611f7e84610911565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa75750611fa68185611b85565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fd082610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d906138e5565b60405180910390fd5b6120a18383836128a8565b6120ac600082611e19565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120fc9190613d17565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121539190613c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890613905565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124329190613808565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a6906139c5565b60405180910390fd5b6124b881611dad565b156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef906138c5565b60405180910390fd5b612504600083836128a8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125549190613c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612618848484611fb0565b612624848484846128ad565b612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a90613885565b60405180910390fd5b50505050565b60606006805461267890613e13565b80601f01602080910402602001604051908101604052809291908181526020018280546126a490613e13565b80156126f15780601f106126c6576101008083540402835291602001916126f1565b820191906000526020600020905b8154815290600101906020018083116126d457829003601f168201915b5050505050905090565b60606000821415612743576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a3565b600082905060005b6000821461277557808061275e90613e45565b915050600a8261276e9190613c8c565b915061274b565b60008167ffffffffffffffff8111156127b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b6000851461289c576001826128029190613d17565b9150600a856128119190613e8e565b603061281d9190613c36565b60f81b818381518110612859577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128959190613c8c565b94506127ed565b8093505050505b919050565b505050565b60006128ce8473ffffffffffffffffffffffffffffffffffffffff16612a44565b15612a37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128f7611da5565b8786866040518563ffffffff1660e01b815260040161291994939291906137bc565b602060405180830381600087803b15801561293357600080fd5b505af192505050801561296457506040513d601f19601f820116820180604052508101906129619190612e41565b60015b6129e7573d8060008114612994576040519150601f19603f3d011682016040523d82523d6000602084013e612999565b606091505b506000815114156129df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d690613885565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a3c565b600190505b949350505050565b600080823b905060008111915050919050565b828054612a6390613e13565b90600052602060002090601f016020900481019282612a855760008555612acc565b82601f10612a9e57805160ff1916838001178555612acc565b82800160010185558215612acc579182015b82811115612acb578251825591602001919060010190612ab0565b5b509050612ad99190612add565b5090565b5b80821115612af6576000816000905550600101612ade565b5090565b6000612b0d612b0884613b88565b613b57565b905082815260208101848484011115612b2557600080fd5b612b30848285613dd1565b509392505050565b6000612b4b612b4684613bb8565b613b57565b905082815260208101848484011115612b6357600080fd5b612b6e848285613dd1565b509392505050565b600081359050612b8581613f8c565b92915050565b600081359050612b9a81613fa3565b92915050565b600081359050612baf81613fba565b92915050565b600081359050612bc481613fd1565b92915050565b600081519050612bd981613fd1565b92915050565b600082601f830112612bf057600080fd5b8135612c00848260208601612afa565b91505092915050565b600082601f830112612c1a57600080fd5b8135612c2a848260208601612b38565b91505092915050565b600081359050612c4281613fe8565b92915050565b600060208284031215612c5a57600080fd5b6000612c6884828501612b76565b91505092915050565b600060208284031215612c8357600080fd5b6000612c9184828501612b8b565b91505092915050565b60008060408385031215612cad57600080fd5b6000612cbb85828601612b76565b9250506020612ccc85828601612b76565b9150509250929050565b600080600060608486031215612ceb57600080fd5b6000612cf986828701612b76565b9350506020612d0a86828701612b76565b9250506040612d1b86828701612c33565b9150509250925092565b60008060008060808587031215612d3b57600080fd5b6000612d4987828801612b76565b9450506020612d5a87828801612b76565b9350506040612d6b87828801612c33565b925050606085013567ffffffffffffffff811115612d8857600080fd5b612d9487828801612bdf565b91505092959194509250565b60008060408385031215612db357600080fd5b6000612dc185828601612b76565b9250506020612dd285828601612ba0565b9150509250929050565b60008060408385031215612def57600080fd5b6000612dfd85828601612b76565b9250506020612e0e85828601612c33565b9150509250929050565b600060208284031215612e2a57600080fd5b6000612e3884828501612bb5565b91505092915050565b600060208284031215612e5357600080fd5b6000612e6184828501612bca565b91505092915050565b600060208284031215612e7c57600080fd5b600082013567ffffffffffffffff811115612e9657600080fd5b612ea284828501612c09565b91505092915050565b600060208284031215612ebd57600080fd5b6000612ecb84828501612c33565b91505092915050565b60008060408385031215612ee757600080fd5b6000612ef585828601612c33565b9250506020612f0685828601612b76565b9150509250929050565b612f1981613d4b565b82525050565b612f2881613d6f565b82525050565b6000612f3982613be8565b612f438185613bfe565b9350612f53818560208601613de0565b612f5c81613f7b565b840191505092915050565b6000612f7282613bf3565b612f7c8185613c1a565b9350612f8c818560208601613de0565b612f9581613f7b565b840191505092915050565b6000612fab82613bf3565b612fb58185613c2b565b9350612fc5818560208601613de0565b80840191505092915050565b6000612fde601c83613c1a565b91507f496e636f727265637420616d6f756e74206f66204554482073656e74000000006000830152602082019050919050565b600061301e600d83613c1a565b91507f5472616e73666572206661696c000000000000000000000000000000000000006000830152602082019050919050565b600061305e603283613c1a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130c4602683613c1a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061312a601c83613c1a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061316a602483613c1a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131d0601983613c1a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613210602383613c1a565b91507f43616e206f6e6c7920627579206f6e652061742077686974656c69737420707260008301527f69636500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613276602c83613c1a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132dc603883613c1a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613342602a83613c1a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a8602983613c1a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061340e602083613c1a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061344e601783613c1a565b91507f4d6178696d756d203130207065722070757263686173650000000000000000006000830152602082019050919050565b600061348e602c83613c1a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134f4602083613c1a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613534602983613c1a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061359a602f83613c1a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613600602183613c1a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613666600083613c0f565b9150600082019050919050565b6000613680603183613c1a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136e6601583613c1a565b91507f4e6f7420656e6f75676820456c766573206c65667400000000000000000000006000830152602082019050919050565b6000613726601f83613c1a565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b61376281613dc7565b82525050565b60006137748285612fa0565b91506137808284612fa0565b91508190509392505050565b600061379782613659565b9150819050919050565b60006020820190506137b66000830184612f10565b92915050565b60006080820190506137d16000830187612f10565b6137de6020830186612f10565b6137eb6040830185613759565b81810360608301526137fd8184612f2e565b905095945050505050565b600060208201905061381d6000830184612f1f565b92915050565b6000602082019050818103600083015261383d8184612f67565b905092915050565b6000602082019050818103600083015261385e81612fd1565b9050919050565b6000602082019050818103600083015261387e81613011565b9050919050565b6000602082019050818103600083015261389e81613051565b9050919050565b600060208201905081810360008301526138be816130b7565b9050919050565b600060208201905081810360008301526138de8161311d565b9050919050565b600060208201905081810360008301526138fe8161315d565b9050919050565b6000602082019050818103600083015261391e816131c3565b9050919050565b6000602082019050818103600083015261393e81613203565b9050919050565b6000602082019050818103600083015261395e81613269565b9050919050565b6000602082019050818103600083015261397e816132cf565b9050919050565b6000602082019050818103600083015261399e81613335565b9050919050565b600060208201905081810360008301526139be8161339b565b9050919050565b600060208201905081810360008301526139de81613401565b9050919050565b600060208201905081810360008301526139fe81613441565b9050919050565b60006020820190508181036000830152613a1e81613481565b9050919050565b60006020820190508181036000830152613a3e816134e7565b9050919050565b60006020820190508181036000830152613a5e81613527565b9050919050565b60006020820190508181036000830152613a7e8161358d565b9050919050565b60006020820190508181036000830152613a9e816135f3565b9050919050565b60006020820190508181036000830152613abe81613673565b9050919050565b60006020820190508181036000830152613ade816136d9565b9050919050565b60006020820190508181036000830152613afe81613719565b9050919050565b6000602082019050613b1a6000830184613759565b92915050565b6000606082019050613b356000830186613759565b613b426020830185612f10565b613b4f6040830184612f10565b949350505050565b6000604051905081810181811067ffffffffffffffff82111715613b7e57613b7d613f4c565b5b8060405250919050565b600067ffffffffffffffff821115613ba357613ba2613f4c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613bd357613bd2613f4c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c4182613dc7565b9150613c4c83613dc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8157613c80613ebf565b5b828201905092915050565b6000613c9782613dc7565b9150613ca283613dc7565b925082613cb257613cb1613eee565b5b828204905092915050565b6000613cc882613dc7565b9150613cd383613dc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0c57613d0b613ebf565b5b828202905092915050565b6000613d2282613dc7565b9150613d2d83613dc7565b925082821015613d4057613d3f613ebf565b5b828203905092915050565b6000613d5682613da7565b9050919050565b6000613d6882613da7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dfe578082015181840152602081019050613de3565b83811115613e0d576000848401525b50505050565b60006002820490506001821680613e2b57607f821691505b60208210811415613e3f57613e3e613f1d565b5b50919050565b6000613e5082613dc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8357613e82613ebf565b5b600182019050919050565b6000613e9982613dc7565b9150613ea483613dc7565b925082613eb457613eb3613eee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613f9581613d4b565b8114613fa057600080fd5b50565b613fac81613d5d565b8114613fb757600080fd5b50565b613fc381613d6f565b8114613fce57600080fd5b50565b613fda81613d7b565b8114613fe557600080fd5b50565b613ff181613dc7565b8114613ffc57600080fd5b5056fea2646970667358221220362933ce750181e56d0061ed6894deb585973721948bee5d8055264c27aecb7c64736f6c6343000800003368747470733a2f2f75732d63656e7472616c312d63727970746f2d656c7665732e636c6f756466756e6374696f6e732e6e65742f6765742d6d657461646174613f746f6b656e69643d00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000c3663566a5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a2441b4f359fc5525a1f21c0aa65510ef96c80c00000000000000000000000017d8a4d378ccf7a786ba73795fb7927b33c213b000000000000000000000000035240cc7a747620a963f9bfa6e43c3aa95850473000000000000000000000000000000000000000000000000000000000000000c43727970746f20456c76657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454c565300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063e43252d711610064578063e43252d71461064d578063e985e9c514610676578063f2fde38b146106b3578063fc1a1c36146106dc576101cd565b8063b88d4fde1461058e578063c87b56dd146105b7578063d936547e146105f4578063d96a094a14610631576101cd565b8063a035b1fe116100d1578063a035b1fe146104e8578063a22cb46514610513578063a2b40d191461053c578063b723b34e14610565576101cd565b80638da5cb5b14610469578063905ebf631461049457806395d89b41146104bd576101cd565b80633ccfd60b1161016f57806370a082311161013e57806370a08231146103c3578063715018a61461040057806389b08d88146104175780638b1a79fe14610440576101cd565b80633ccfd60b1461031d57806342842e0e146103345780634558f47b1461035d5780636352211e14610386576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806302fe53051461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e18565b610707565b6040516102069190613808565b60405180910390f35b34801561021b57600080fd5b5061023660048036038101906102319190612e6a565b6107e9565b005b34801561024457600080fd5b5061024d61087f565b60405161025a9190613823565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612eab565b610911565b60405161029791906137a1565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612ddc565b610996565b005b3480156102d557600080fd5b506102de610aae565b6040516102eb9190613b05565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612cd6565b610ab8565b005b34801561032957600080fd5b50610332610b18565b005b34801561034057600080fd5b5061035b60048036038101906103569190612cd6565b610c4a565b005b34801561036957600080fd5b50610384600480360381019061037f9190612c71565b610c6a565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612eab565b610d2a565b6040516103ba91906137a1565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190612c48565b610ddc565b6040516103f79190613b05565b60405180910390f35b34801561040c57600080fd5b50610415610e94565b005b34801561042357600080fd5b5061043e60048036038101906104399190612c71565b610f1c565b005b34801561044c57600080fd5b5061046760048036038101906104629190612eab565b610fdc565b005b34801561047557600080fd5b5061047e611062565b60405161048b91906137a1565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612c71565b61108c565b005b3480156104c957600080fd5b506104d261114c565b6040516104df9190613823565b60405180910390f35b3480156104f457600080fd5b506104fd6111de565b60405161050a9190613b05565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612da0565b6111e4565b005b34801561054857600080fd5b50610563600480360381019061055e9190612eab565b6111fa565b005b34801561057157600080fd5b5061058c60048036038101906105879190612ed4565b611280565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612d25565b6113d5565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612eab565b611437565b6040516105eb9190613823565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612c48565b6114de565b6040516106289190613808565b60405180910390f35b61064b60048036038101906106469190612eab565b6114fe565b005b34801561065957600080fd5b50610674600480360381019061066f9190612c48565b611aae565b005b34801561068257600080fd5b5061069d60048036038101906106989190612c9a565b611b85565b6040516106aa9190613808565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190612c48565b611c19565b005b3480156106e857600080fd5b506106f1611d11565b6040516106fe9190613b05565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e257506107e182611d3b565b5b9050919050565b6107f1611da5565b73ffffffffffffffffffffffffffffffffffffffff1661080f611062565b73ffffffffffffffffffffffffffffffffffffffff1614610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90613a25565b60405180910390fd5b806006908051906020019061087b929190612a57565b5050565b60606000805461088e90613e13565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90613e13565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b600061091c82611dad565b61095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290613a05565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a182610d2a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0990613a85565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611da5565b73ffffffffffffffffffffffffffffffffffffffff161480610a605750610a5f81610a5a611da5565b611b85565b5b610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690613965565b60405180910390fd5b610aa98383611e19565b505050565b6000600a54905090565b610ac9610ac3611da5565b82611ed2565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613aa5565b60405180910390fd5b610b13838383611fb0565b505050565b610b20611da5565b73ffffffffffffffffffffffffffffffffffffffff16610b3e611062565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613a25565b60405180910390fd5b6000610b9e611da5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bc19061378c565b60006040518083038185875af1925050503d8060008114610bfe576040519150601f19603f3d011682016040523d82523d6000602084013e610c03565b606091505b5050905080610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613865565b60405180910390fd5b50565b610c65838383604051806020016040528060008152506113d5565b505050565b610c72611da5565b73ffffffffffffffffffffffffffffffffffffffff16610c90611062565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613a25565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906139a5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490613985565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9c611da5565b73ffffffffffffffffffffffffffffffffffffffff16610eba611062565b73ffffffffffffffffffffffffffffffffffffffff1614610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613a25565b60405180910390fd5b610f1a600061220c565b565b610f24611da5565b73ffffffffffffffffffffffffffffffffffffffff16610f42611062565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90613a25565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610fe4611da5565b73ffffffffffffffffffffffffffffffffffffffff16611002611062565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613a25565b60405180910390fd5b80600c8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611094611da5565b73ffffffffffffffffffffffffffffffffffffffff166110b2611062565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613a25565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606001805461115b90613e13565b80601f016020809104026020016040519081016040528092919081815260200182805461118790613e13565b80156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b5050505050905090565b600b5481565b6111f66111ef611da5565b83836122d2565b5050565b611202611da5565b73ffffffffffffffffffffffffffffffffffffffff16611220611062565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613a25565b60405180910390fd5b80600b8190555050565b611288611da5565b73ffffffffffffffffffffffffffffffffffffffff166112a6611062565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613a25565b60405180910390fd5b600a548261130a6009611d17565b6113149190613c36565b10611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613ac5565b60405180910390fd5b60005b828110156113d057600061136b6009611d17565b90506113776009611d25565b611381838261243f565b7fda39b3e7555c01a472d3b5de708f98e5ab5465426a4a10a772cb25bad00af0b18130856040516113b493929190613b20565b60405180910390a15080806113c890613e45565b915050611357565b505050565b6113e66113e0611da5565b83611ed2565b611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613aa5565b60405180910390fd5b6114318484848461260d565b50505050565b606061144282611dad565b611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613a65565b60405180910390fd5b600061148b612669565b905060008151116114ab57604051806020016040528060008152506114d6565b806114b5846126fb565b6040516020016114c6929190613768565b6040516020818303038152906040525b915050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b60026008541415611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613ae5565b60405180910390fd5b6002600881905550600a548161155a6009611d17565b6115649190613c36565b106115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613ac5565b60405180910390fd5b601060006115b0611da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116945780600b5461160a9190613cbd565b341461164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290613845565b60405180910390fd5b600a81111561168f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611686906139e5565b60405180910390fd5b61177c565b600c5434146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613845565b60405180910390fd5b600181101561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613925565b60405180910390fd5b60006010600061172a611da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000600a3461178b9190613c8c565b9050600060028261179c9190613cbd565b346117a79190613d17565b90506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516117f19061378c565b60006040518083038185875af1925050503d806000811461182e576040519150601f19603f3d011682016040523d82523d6000602084013e611833565b606091505b5050905080611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613865565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516118bf9061378c565b60006040518083038185875af1925050503d80600081146118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b5050905080611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90613865565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168560405161198d9061378c565b60006040518083038185875af1925050503d80600081146119ca576040519150601f19603f3d011682016040523d82523d6000602084013e6119cf565b606091505b5050905080611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613865565b60405180910390fd5b60005b86811015611a9d576000611a2a6009611d17565b9050611a366009611d25565b611a47611a41611da5565b8261243f565b7fda39b3e7555c01a472d3b5de708f98e5ab5465426a4a10a772cb25bad00af0b18130611a72611da5565b604051611a8193929190613b20565b60405180910390a1508080611a9590613e45565b915050611a16565b505050505050600160088190555050565b611ab6611da5565b73ffffffffffffffffffffffffffffffffffffffff16611ad4611062565b73ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190613a25565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c21611da5565b73ffffffffffffffffffffffffffffffffffffffff16611c3f611062565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc906138a5565b60405180910390fd5b611d0e8161220c565b50565b600c5481565b600081600001549050919050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e8c83610d2a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611edd82611dad565b611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613945565b60405180910390fd5b6000611f2783610d2a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9657508373ffffffffffffffffffffffffffffffffffffffff16611f7e84610911565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa75750611fa68185611b85565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fd082610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d906138e5565b60405180910390fd5b6120a18383836128a8565b6120ac600082611e19565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120fc9190613d17565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121539190613c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890613905565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124329190613808565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a6906139c5565b60405180910390fd5b6124b881611dad565b156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef906138c5565b60405180910390fd5b612504600083836128a8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125549190613c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612618848484611fb0565b612624848484846128ad565b612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a90613885565b60405180910390fd5b50505050565b60606006805461267890613e13565b80601f01602080910402602001604051908101604052809291908181526020018280546126a490613e13565b80156126f15780601f106126c6576101008083540402835291602001916126f1565b820191906000526020600020905b8154815290600101906020018083116126d457829003601f168201915b5050505050905090565b60606000821415612743576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a3565b600082905060005b6000821461277557808061275e90613e45565b915050600a8261276e9190613c8c565b915061274b565b60008167ffffffffffffffff8111156127b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b6000851461289c576001826128029190613d17565b9150600a856128119190613e8e565b603061281d9190613c36565b60f81b818381518110612859577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128959190613c8c565b94506127ed565b8093505050505b919050565b505050565b60006128ce8473ffffffffffffffffffffffffffffffffffffffff16612a44565b15612a37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128f7611da5565b8786866040518563ffffffff1660e01b815260040161291994939291906137bc565b602060405180830381600087803b15801561293357600080fd5b505af192505050801561296457506040513d601f19601f820116820180604052508101906129619190612e41565b60015b6129e7573d8060008114612994576040519150601f19603f3d011682016040523d82523d6000602084013e612999565b606091505b506000815114156129df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d690613885565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a3c565b600190505b949350505050565b600080823b905060008111915050919050565b828054612a6390613e13565b90600052602060002090601f016020900481019282612a855760008555612acc565b82601f10612a9e57805160ff1916838001178555612acc565b82800160010185558215612acc579182015b82811115612acb578251825591602001919060010190612ab0565b5b509050612ad99190612add565b5090565b5b80821115612af6576000816000905550600101612ade565b5090565b6000612b0d612b0884613b88565b613b57565b905082815260208101848484011115612b2557600080fd5b612b30848285613dd1565b509392505050565b6000612b4b612b4684613bb8565b613b57565b905082815260208101848484011115612b6357600080fd5b612b6e848285613dd1565b509392505050565b600081359050612b8581613f8c565b92915050565b600081359050612b9a81613fa3565b92915050565b600081359050612baf81613fba565b92915050565b600081359050612bc481613fd1565b92915050565b600081519050612bd981613fd1565b92915050565b600082601f830112612bf057600080fd5b8135612c00848260208601612afa565b91505092915050565b600082601f830112612c1a57600080fd5b8135612c2a848260208601612b38565b91505092915050565b600081359050612c4281613fe8565b92915050565b600060208284031215612c5a57600080fd5b6000612c6884828501612b76565b91505092915050565b600060208284031215612c8357600080fd5b6000612c9184828501612b8b565b91505092915050565b60008060408385031215612cad57600080fd5b6000612cbb85828601612b76565b9250506020612ccc85828601612b76565b9150509250929050565b600080600060608486031215612ceb57600080fd5b6000612cf986828701612b76565b9350506020612d0a86828701612b76565b9250506040612d1b86828701612c33565b9150509250925092565b60008060008060808587031215612d3b57600080fd5b6000612d4987828801612b76565b9450506020612d5a87828801612b76565b9350506040612d6b87828801612c33565b925050606085013567ffffffffffffffff811115612d8857600080fd5b612d9487828801612bdf565b91505092959194509250565b60008060408385031215612db357600080fd5b6000612dc185828601612b76565b9250506020612dd285828601612ba0565b9150509250929050565b60008060408385031215612def57600080fd5b6000612dfd85828601612b76565b9250506020612e0e85828601612c33565b9150509250929050565b600060208284031215612e2a57600080fd5b6000612e3884828501612bb5565b91505092915050565b600060208284031215612e5357600080fd5b6000612e6184828501612bca565b91505092915050565b600060208284031215612e7c57600080fd5b600082013567ffffffffffffffff811115612e9657600080fd5b612ea284828501612c09565b91505092915050565b600060208284031215612ebd57600080fd5b6000612ecb84828501612c33565b91505092915050565b60008060408385031215612ee757600080fd5b6000612ef585828601612c33565b9250506020612f0685828601612b76565b9150509250929050565b612f1981613d4b565b82525050565b612f2881613d6f565b82525050565b6000612f3982613be8565b612f438185613bfe565b9350612f53818560208601613de0565b612f5c81613f7b565b840191505092915050565b6000612f7282613bf3565b612f7c8185613c1a565b9350612f8c818560208601613de0565b612f9581613f7b565b840191505092915050565b6000612fab82613bf3565b612fb58185613c2b565b9350612fc5818560208601613de0565b80840191505092915050565b6000612fde601c83613c1a565b91507f496e636f727265637420616d6f756e74206f66204554482073656e74000000006000830152602082019050919050565b600061301e600d83613c1a565b91507f5472616e73666572206661696c000000000000000000000000000000000000006000830152602082019050919050565b600061305e603283613c1a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130c4602683613c1a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061312a601c83613c1a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061316a602483613c1a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131d0601983613c1a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613210602383613c1a565b91507f43616e206f6e6c7920627579206f6e652061742077686974656c69737420707260008301527f69636500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613276602c83613c1a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132dc603883613c1a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613342602a83613c1a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a8602983613c1a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061340e602083613c1a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061344e601783613c1a565b91507f4d6178696d756d203130207065722070757263686173650000000000000000006000830152602082019050919050565b600061348e602c83613c1a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134f4602083613c1a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613534602983613c1a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061359a602f83613c1a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613600602183613c1a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613666600083613c0f565b9150600082019050919050565b6000613680603183613c1a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136e6601583613c1a565b91507f4e6f7420656e6f75676820456c766573206c65667400000000000000000000006000830152602082019050919050565b6000613726601f83613c1a565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b61376281613dc7565b82525050565b60006137748285612fa0565b91506137808284612fa0565b91508190509392505050565b600061379782613659565b9150819050919050565b60006020820190506137b66000830184612f10565b92915050565b60006080820190506137d16000830187612f10565b6137de6020830186612f10565b6137eb6040830185613759565b81810360608301526137fd8184612f2e565b905095945050505050565b600060208201905061381d6000830184612f1f565b92915050565b6000602082019050818103600083015261383d8184612f67565b905092915050565b6000602082019050818103600083015261385e81612fd1565b9050919050565b6000602082019050818103600083015261387e81613011565b9050919050565b6000602082019050818103600083015261389e81613051565b9050919050565b600060208201905081810360008301526138be816130b7565b9050919050565b600060208201905081810360008301526138de8161311d565b9050919050565b600060208201905081810360008301526138fe8161315d565b9050919050565b6000602082019050818103600083015261391e816131c3565b9050919050565b6000602082019050818103600083015261393e81613203565b9050919050565b6000602082019050818103600083015261395e81613269565b9050919050565b6000602082019050818103600083015261397e816132cf565b9050919050565b6000602082019050818103600083015261399e81613335565b9050919050565b600060208201905081810360008301526139be8161339b565b9050919050565b600060208201905081810360008301526139de81613401565b9050919050565b600060208201905081810360008301526139fe81613441565b9050919050565b60006020820190508181036000830152613a1e81613481565b9050919050565b60006020820190508181036000830152613a3e816134e7565b9050919050565b60006020820190508181036000830152613a5e81613527565b9050919050565b60006020820190508181036000830152613a7e8161358d565b9050919050565b60006020820190508181036000830152613a9e816135f3565b9050919050565b60006020820190508181036000830152613abe81613673565b9050919050565b60006020820190508181036000830152613ade816136d9565b9050919050565b60006020820190508181036000830152613afe81613719565b9050919050565b6000602082019050613b1a6000830184613759565b92915050565b6000606082019050613b356000830186613759565b613b426020830185612f10565b613b4f6040830184612f10565b949350505050565b6000604051905081810181811067ffffffffffffffff82111715613b7e57613b7d613f4c565b5b8060405250919050565b600067ffffffffffffffff821115613ba357613ba2613f4c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613bd357613bd2613f4c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c4182613dc7565b9150613c4c83613dc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8157613c80613ebf565b5b828201905092915050565b6000613c9782613dc7565b9150613ca283613dc7565b925082613cb257613cb1613eee565b5b828204905092915050565b6000613cc882613dc7565b9150613cd383613dc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0c57613d0b613ebf565b5b828202905092915050565b6000613d2282613dc7565b9150613d2d83613dc7565b925082821015613d4057613d3f613ebf565b5b828203905092915050565b6000613d5682613da7565b9050919050565b6000613d6882613da7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dfe578082015181840152602081019050613de3565b83811115613e0d576000848401525b50505050565b60006002820490506001821680613e2b57607f821691505b60208210811415613e3f57613e3e613f1d565b5b50919050565b6000613e5082613dc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8357613e82613ebf565b5b600182019050919050565b6000613e9982613dc7565b9150613ea483613dc7565b925082613eb457613eb3613eee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613f9581613d4b565b8114613fa057600080fd5b50565b613fac81613d5d565b8114613fb757600080fd5b50565b613fc381613d6f565b8114613fce57600080fd5b50565b613fda81613d7b565b8114613fe557600080fd5b50565b613ff181613dc7565b8114613ffc57600080fd5b5056fea2646970667358221220362933ce750181e56d0061ed6894deb585973721948bee5d8055264c27aecb7c64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000c3663566a5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a2441b4f359fc5525a1f21c0aa65510ef96c80c00000000000000000000000017d8a4d378ccf7a786ba73795fb7927b33c213b000000000000000000000000035240cc7a747620a963f9bfa6e43c3aa95850473000000000000000000000000000000000000000000000000000000000000000c43727970746f20456c76657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454c565300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Crypto Elves
Arg [1] : symbol (string): ELVS
Arg [2] : _price (uint256): 55000000000000000
Arg [3] : _wlPrice (uint256): 0
Arg [4] : _payee1 (address): 0x5A2441b4f359FC5525a1F21C0aa65510eF96C80C
Arg [5] : _payee2 (address): 0x17D8A4d378ccf7a786Ba73795fb7927B33c213b0
Arg [6] : _payee3 (address): 0x35240cC7A747620a963f9BfA6E43c3aA95850473

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 00000000000000000000000000000000000000000000000000c3663566a58000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000005a2441b4f359fc5525a1f21c0aa65510ef96c80c
Arg [5] : 00000000000000000000000017d8a4d378ccf7a786ba73795fb7927b33c213b0
Arg [6] : 00000000000000000000000035240cc7a747620a963f9bfa6e43c3aa95850473
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 43727970746f20456c7665730000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 454c565300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

168:4539:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1455:300:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4495:80:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2373:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3440:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3911:86:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4629:330:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4324:165:3;;;;;;;;;;;;;:::i;:::-;;5025:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4217:101:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2076:235:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1814:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:10;;;;;;;;;;;;;:::i;:::-;;4110::3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3805:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1029:85:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4003:101:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2535:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;394:20:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4186:153:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3710:89:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3176:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5270:320:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2705:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;826:43:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1818:1352;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4581:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4405:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;420:29:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1455:300:5;1557:4;1607:25;1592:40;;;:11;:40;;;;:104;;;;1663:33;1648:48;;;:11;:48;;;;1592:104;:156;;;;1712:36;1736:11;1712:23;:36::i;:::-;1592:156;1573:175;;1455:300;;;:::o;4495:80:3:-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4564:4:3::1;4558:3;:10;;;;;;;;;;;;:::i;:::-;;4495:80:::0;:::o;2373:98:5:-;2427:13;2459:5;2452:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2373:98;:::o;3902:217::-;3978:7;4005:16;4013:7;4005;:16::i;:::-;3997:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4088:15;:24;4104:7;4088:24;;;;;;;;;;;;;;;;;;;;;4081:31;;3902:217;;;:::o;3440:401::-;3520:13;3536:23;3551:7;3536:14;:23::i;:::-;3520:39;;3583:5;3577:11;;:2;:11;;;;3569:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3674:5;3658:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3683:37;3700:5;3707:12;:10;:12::i;:::-;3683:16;:37::i;:::-;3658:62;3637:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3813:21;3822:2;3826:7;3813:8;:21::i;:::-;3440:401;;;:::o;3911:86:3:-;3954:7;3980:9;;3973:16;;3911:86;:::o;4629:330:5:-;4818:41;4837:12;:10;:12::i;:::-;4851:7;4818:18;:41::i;:::-;4810:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4924:28;4934:4;4940:2;4944:7;4924:9;:28::i;:::-;4629:330;;;:::o;4324:165:3:-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4371:12:3::1;4388;:10;:12::i;:::-;:17;;4413:21;4388:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4370:69;;;4457:7;4449:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;1311:1:10;4324:165:3:o:0;5025:179:5:-;5158:39;5175:4;5181:2;5185:7;5158:39;;;;;;;;;;;;:16;:39::i;:::-;5025:179;;;:::o;4217:101:3:-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4302:9:3::1;4293:6;;:18;;;;;;;;;;;;;;;;;;4217:101:::0;:::o;2076:235:5:-;2148:7;2167:13;2183:7;:16;2191:7;2183:16;;;;;;;;;;;;;;;;;;;;;2167:32;;2234:1;2217:19;;:5;:19;;;;2209:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2299:5;2292:12;;;2076:235;;;:::o;1814:205::-;1886:7;1930:1;1913:19;;:5;:19;;;;1905:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1996:9;:16;2006:5;1996:16;;;;;;;;;;;;;;;;1989:23;;1814:205;;;:::o;1661:101:10:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;4110::3:-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4195:9:3::1;4186:6;;:18;;;;;;;;;;;;;;;;;;4110:101:::0;:::o;3805:100::-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:8:3::1;3873:14;:25;;;;3805:100:::0;:::o;1029:85:10:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;4003:101:3:-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4088:9:3::1;4079:6;;:18;;;;;;;;;;;;;;;;;;4003:101:::0;:::o;2535:102:5:-;2591:13;2623:7;2616:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2535:102;:::o;394:20:3:-;;;;:::o;4186:153:5:-;4280:52;4299:12;:10;:12::i;:::-;4313:8;4323;4280:18;:52::i;:::-;4186:153;;:::o;3710:89:3:-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3784:8:3::1;3776:5;:16;;;;3710:89:::0;:::o;3176:524::-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3292:9:3::1;;3283:6;3260:20;3277:2;3260:16;:20::i;:::-;:29;;;;:::i;:::-;:41;3252:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3350:9;3346:348;3369:6;3365:1;:10;3346:348;;;3400:14;3417:20;3434:2;3417:16;:20::i;:::-;3400:37;;3496:22;3515:2;3496:18;:22::i;:::-;3596:25;3602:10;3614:6;3596:5;:25::i;:::-;3644:39;3649:6;3665:4;3672:10;3644:39;;;;;;;;:::i;:::-;;;;;;;;3346:348;3377:3;;;;;:::i;:::-;;;;3346:348;;;;3176:524:::0;;:::o;5270:320:5:-;5439:41;5458:12;:10;:12::i;:::-;5472:7;5439:18;:41::i;:::-;5431:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5544:39;5558:4;5564:2;5568:7;5577:5;5544:13;:39::i;:::-;5270:320;;;;:::o;2705:328::-;2778:13;2811:16;2819:7;2811;:16::i;:::-;2803:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2889:21;2913:10;:8;:10::i;:::-;2889:34;;2964:1;2946:7;2940:21;:25;:86;;;;;;;;;;;;;;;;;2992:7;3001:18;:7;:16;:18::i;:::-;2975:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2940:86;2933:93;;;2705:328;;;:::o;826:43:3:-;;;;;;;;;;;;;;;;;;;;;;:::o;1818:1352::-;1680:1:11;2259:7;;:19;;2251:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1680:1;2389:7;:18;;;;1925:9:3::1;;1916:6;1893:20;1910:2;1893:16;:20::i;:::-;:29;;;;:::i;:::-;:41;1885:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1974:11;:25;1986:12;:10;:12::i;:::-;1974:25;;;;;;;;;;;;;;;;;;;;;;;;;1970:405;;2044:6;2036:5;;:14;;;;:::i;:::-;2023:9;:27;2015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2115:2;2105:6;:12;;2097:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1970:405;;;2197:14;;2184:9;:27;2176:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2276:1;2266:6;:11;;2258:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;2359:5;2331:11;:25;2343:12;:10;:12::i;:::-;2331:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;1970:405;2393:13;2421:2;2409:9;:14;;;;:::i;:::-;2393:30;;2433:16;2473:1;2465:5;:9;;;;:::i;:::-;2452;:23;;;;:::i;:::-;2433:42;;2509:12;2526:6;;;;;;;;;;;:11;;2545:8;2526:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508:50;;;2576:7;2568:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;2613:13;2631:6;;;;;;;;;;;:11;;2650:5;2631:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2612:48;;;2678:8;2670:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;2716:14;2735:6;;;;;;;;;;;:11;;2754:5;2735:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2715:49;;;2782:9;2774:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;2832:9;2828:336;2851:6;2847:1;:10;2828:336;;;2878:14;2895:20;2912:2;2895:16;:20::i;:::-;2878:37;;2978:22;2997:2;2978:18;:22::i;:::-;3066:27;3072:12;:10;:12::i;:::-;3086:6;3066:5;:27::i;:::-;3112:41;3117:6;3133:4;3140:12;:10;:12::i;:::-;3112:41;;;;;;;;:::i;:::-;;;;;;;;2828:336;2859:3;;;;;:::i;:::-;;;;2828:336;;;;2418:1:11;;;;;1637::::0;2562:7;:22;;;;1818:1352:3;:::o;4581:124::-;1252:12:10;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4694:4:3::1;4660:11;:31;4672:18;4660:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;4581:124:::0;:::o;4405:162:5:-;4502:4;4525:18;:25;4544:5;4525:25;;;;;;;;;;;;;;;:35;4551:8;4525:35;;;;;;;;;;;;;;;;;;;;;;;;;4518:42;;4405:162;;;;:::o;1911:198:10:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;420:29:3:-;;;;:::o;827:112:2:-;892:7;918;:14;;;911:21;;827:112;;;:::o;945:123::-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;763:155:4:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;7062:125:5:-;7127:4;7178:1;7150:30;;:7;:16;7158:7;7150:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7143:37;;7062:125;;;:::o;10913:171::-;11014:2;10987:15;:24;11003:7;10987:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11069:7;11065:2;11031:46;;11040:23;11055:7;11040:14;:23::i;:::-;11031:46;;;;;;;;;;;;10913:171;;:::o;7345:344::-;7438:4;7462:16;7470:7;7462;:16::i;:::-;7454:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7537:13;7553:23;7568:7;7553:14;:23::i;:::-;7537:39;;7605:5;7594:16;;:7;:16;;;:51;;;;7638:7;7614:31;;:20;7626:7;7614:11;:20::i;:::-;:31;;;7594:51;:87;;;;7649:32;7666:5;7673:7;7649:16;:32::i;:::-;7594:87;7586:96;;;7345:344;;;;:::o;10242:560::-;10396:4;10369:31;;:23;10384:7;10369:14;:23::i;:::-;:31;;;10361:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10478:1;10464:16;;:2;:16;;;;10456:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10532:39;10553:4;10559:2;10563:7;10532:20;:39::i;:::-;10633:29;10650:1;10654:7;10633:8;:29::i;:::-;10692:1;10673:9;:15;10683:4;10673:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10720:1;10703:9;:13;10713:2;10703:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10750:2;10731:7;:16;10739:7;10731:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10787:7;10783:2;10768:27;;10777:4;10768:27;;;;;;;;;;;;10242:560;;;:::o;2263:187:10:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2263:187;;:::o;11219:307:5:-;11369:8;11360:17;;:5;:17;;;;11352:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11455:8;11417:18;:25;11436:5;11417:25;;;;;;;;;;;;;;;:35;11443:8;11417:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11500:8;11478:41;;11493:5;11478:41;;;11510:8;11478:41;;;;;;:::i;:::-;;;;;;;;11219:307;;;:::o;8981:372::-;9074:1;9060:16;;:2;:16;;;;9052:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9132:16;9140:7;9132;:16::i;:::-;9131:17;9123:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9192:45;9221:1;9225:2;9229:7;9192:20;:45::i;:::-;9265:1;9248:9;:13;9258:2;9248:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9295:2;9276:7;:16;9284:7;9276:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9338:7;9334:2;9313:33;;9330:1;9313:33;;;;;;;;;;;;8981:372;;:::o;6452:307::-;6603:28;6613:4;6619:2;6623:7;6603:9;:28::i;:::-;6649:48;6672:4;6678:2;6682:7;6691:5;6649:22;:48::i;:::-;6641:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6452:307;;;;:::o;3290:93::-;3341:13;3373:3;3366:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3290:93;:::o;275:703:12:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;13413:122:5:-;;;;:::o;12079:778::-;12229:4;12249:15;:2;:13;;;:15::i;:::-;12245:606;;;12300:2;12284:36;;;12321:12;:10;:12::i;:::-;12335:4;12341:7;12350:5;12284:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12280:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12540:1;12523:6;:13;:18;12519:266;;;12565:60;;;;;;;;;;:::i;:::-;;;;;;;;12519:266;12737:6;12731:13;12722:6;12718:2;12714:15;12707:38;12280:519;12416:41;;;12406:51;;;:6;:51;;;;12399:58;;;;;12245:606;12836:4;12829:11;;12079:778;;;;;;;:::o;717:413:0:-;777:4;980:12;1089:7;1077:20;1069:28;;1122:1;1115:4;:8;1108:15;;;717:413;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:13:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:155::-;;942:6;929:20;920:29;;958:41;993:5;958:41;:::i;:::-;910:95;;;;:::o;1011:133::-;;1092:6;1079:20;1070:29;;1108:30;1132:5;1108:30;:::i;:::-;1060:84;;;;:::o;1150:137::-;;1233:6;1220:20;1211:29;;1249:32;1275:5;1249:32;:::i;:::-;1201:86;;;;:::o;1293:141::-;;1380:6;1374:13;1365:22;;1396:32;1422:5;1396:32;:::i;:::-;1355:79;;;;:::o;1453:271::-;;1557:3;1550:4;1542:6;1538:17;1534:27;1524:2;;1575:1;1572;1565:12;1524:2;1615:6;1602:20;1640:78;1714:3;1706:6;1699:4;1691:6;1687:17;1640:78;:::i;:::-;1631:87;;1514:210;;;;;:::o;1744:273::-;;1849:3;1842:4;1834:6;1830:17;1826:27;1816:2;;1867:1;1864;1857:12;1816:2;1907:6;1894:20;1932:79;2007:3;1999:6;1992:4;1984:6;1980:17;1932:79;:::i;:::-;1923:88;;1806:211;;;;;:::o;2023:139::-;;2107:6;2094:20;2085:29;;2123:33;2150:5;2123:33;:::i;:::-;2075:87;;;;:::o;2168:262::-;;2276:2;2264:9;2255:7;2251:23;2247:32;2244:2;;;2292:1;2289;2282:12;2244:2;2335:1;2360:53;2405:7;2396:6;2385:9;2381:22;2360:53;:::i;:::-;2350:63;;2306:117;2234:196;;;;:::o;2436:278::-;;2552:2;2540:9;2531:7;2527:23;2523:32;2520:2;;;2568:1;2565;2558:12;2520:2;2611:1;2636:61;2689:7;2680:6;2669:9;2665:22;2636:61;:::i;:::-;2626:71;;2582:125;2510:204;;;;:::o;2720:407::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2861:1;2858;2851:12;2813:2;2904:1;2929:53;2974:7;2965:6;2954:9;2950:22;2929:53;:::i;:::-;2919:63;;2875:117;3031:2;3057:53;3102:7;3093:6;3082:9;3078:22;3057:53;:::i;:::-;3047:63;;3002:118;2803:324;;;;;:::o;3133:552::-;;;;3275:2;3263:9;3254:7;3250:23;3246:32;3243:2;;;3291:1;3288;3281:12;3243:2;3334:1;3359:53;3404:7;3395:6;3384:9;3380:22;3359:53;:::i;:::-;3349:63;;3305:117;3461:2;3487:53;3532:7;3523:6;3512:9;3508:22;3487:53;:::i;:::-;3477:63;;3432:118;3589:2;3615:53;3660:7;3651:6;3640:9;3636:22;3615:53;:::i;:::-;3605:63;;3560:118;3233:452;;;;;:::o;3691:809::-;;;;;3859:3;3847:9;3838:7;3834:23;3830:33;3827:2;;;3876:1;3873;3866:12;3827:2;3919:1;3944:53;3989:7;3980:6;3969:9;3965:22;3944:53;:::i;:::-;3934:63;;3890:117;4046:2;4072:53;4117:7;4108:6;4097:9;4093:22;4072:53;:::i;:::-;4062:63;;4017:118;4174:2;4200:53;4245:7;4236:6;4225:9;4221:22;4200:53;:::i;:::-;4190:63;;4145:118;4330:2;4319:9;4315:18;4302:32;4361:18;4353:6;4350:30;4347:2;;;4393:1;4390;4383:12;4347:2;4421:62;4475:7;4466:6;4455:9;4451:22;4421:62;:::i;:::-;4411:72;;4273:220;3817:683;;;;;;;:::o;4506:401::-;;;4628:2;4616:9;4607:7;4603:23;4599:32;4596:2;;;4644:1;4641;4634:12;4596:2;4687:1;4712:53;4757:7;4748:6;4737:9;4733:22;4712:53;:::i;:::-;4702:63;;4658:117;4814:2;4840:50;4882:7;4873:6;4862:9;4858:22;4840:50;:::i;:::-;4830:60;;4785:115;4586:321;;;;;:::o;4913:407::-;;;5038:2;5026:9;5017:7;5013:23;5009:32;5006:2;;;5054:1;5051;5044:12;5006:2;5097:1;5122:53;5167:7;5158:6;5147:9;5143:22;5122:53;:::i;:::-;5112:63;;5068:117;5224:2;5250:53;5295:7;5286:6;5275:9;5271:22;5250:53;:::i;:::-;5240:63;;5195:118;4996:324;;;;;:::o;5326:260::-;;5433:2;5421:9;5412:7;5408:23;5404:32;5401:2;;;5449:1;5446;5439:12;5401:2;5492:1;5517:52;5561:7;5552:6;5541:9;5537:22;5517:52;:::i;:::-;5507:62;;5463:116;5391:195;;;;:::o;5592:282::-;;5710:2;5698:9;5689:7;5685:23;5681:32;5678:2;;;5726:1;5723;5716:12;5678:2;5769:1;5794:63;5849:7;5840:6;5829:9;5825:22;5794:63;:::i;:::-;5784:73;;5740:127;5668:206;;;;:::o;5880:375::-;;5998:2;5986:9;5977:7;5973:23;5969:32;5966:2;;;6014:1;6011;6004:12;5966:2;6085:1;6074:9;6070:17;6057:31;6115:18;6107:6;6104:30;6101:2;;;6147:1;6144;6137:12;6101:2;6175:63;6230:7;6221:6;6210:9;6206:22;6175:63;:::i;:::-;6165:73;;6028:220;5956:299;;;;:::o;6261:262::-;;6369:2;6357:9;6348:7;6344:23;6340:32;6337:2;;;6385:1;6382;6375:12;6337:2;6428:1;6453:53;6498:7;6489:6;6478:9;6474:22;6453:53;:::i;:::-;6443:63;;6399:117;6327:196;;;;:::o;6529:407::-;;;6654:2;6642:9;6633:7;6629:23;6625:32;6622:2;;;6670:1;6667;6660:12;6622:2;6713:1;6738:53;6783:7;6774:6;6763:9;6759:22;6738:53;:::i;:::-;6728:63;;6684:117;6840:2;6866:53;6911:7;6902:6;6891:9;6887:22;6866:53;:::i;:::-;6856:63;;6811:118;6612:324;;;;;:::o;6942:118::-;7029:24;7047:5;7029:24;:::i;:::-;7024:3;7017:37;7007:53;;:::o;7066:109::-;7147:21;7162:5;7147:21;:::i;:::-;7142:3;7135:34;7125:50;;:::o;7181:360::-;;7295:38;7327:5;7295:38;:::i;:::-;7349:70;7412:6;7407:3;7349:70;:::i;:::-;7342:77;;7428:52;7473:6;7468:3;7461:4;7454:5;7450:16;7428:52;:::i;:::-;7505:29;7527:6;7505:29;:::i;:::-;7500:3;7496:39;7489:46;;7271:270;;;;;:::o;7547:364::-;;7663:39;7696:5;7663:39;:::i;:::-;7718:71;7782:6;7777:3;7718:71;:::i;:::-;7711:78;;7798:52;7843:6;7838:3;7831:4;7824:5;7820:16;7798:52;:::i;:::-;7875:29;7897:6;7875:29;:::i;:::-;7870:3;7866:39;7859:46;;7639:272;;;;;:::o;7917:377::-;;8051:39;8084:5;8051:39;:::i;:::-;8106:89;8188:6;8183:3;8106:89;:::i;:::-;8099:96;;8204:52;8249:6;8244:3;8237:4;8230:5;8226:16;8204:52;:::i;:::-;8281:6;8276:3;8272:16;8265:23;;8027:267;;;;;:::o;8300:326::-;;8463:67;8527:2;8522:3;8463:67;:::i;:::-;8456:74;;8560:30;8556:1;8551:3;8547:11;8540:51;8617:2;8612:3;8608:12;8601:19;;8446:180;;;:::o;8632:311::-;;8795:67;8859:2;8854:3;8795:67;:::i;:::-;8788:74;;8892:15;8888:1;8883:3;8879:11;8872:36;8934:2;8929:3;8925:12;8918:19;;8778:165;;;:::o;8949:382::-;;9112:67;9176:2;9171:3;9112:67;:::i;:::-;9105:74;;9209:34;9205:1;9200:3;9196:11;9189:55;9275:20;9270:2;9265:3;9261:12;9254:42;9322:2;9317:3;9313:12;9306:19;;9095:236;;;:::o;9337:370::-;;9500:67;9564:2;9559:3;9500:67;:::i;:::-;9493:74;;9597:34;9593:1;9588:3;9584:11;9577:55;9663:8;9658:2;9653:3;9649:12;9642:30;9698:2;9693:3;9689:12;9682:19;;9483:224;;;:::o;9713:326::-;;9876:67;9940:2;9935:3;9876:67;:::i;:::-;9869:74;;9973:30;9969:1;9964:3;9960:11;9953:51;10030:2;10025:3;10021:12;10014:19;;9859:180;;;:::o;10045:368::-;;10208:67;10272:2;10267:3;10208:67;:::i;:::-;10201:74;;10305:34;10301:1;10296:3;10292:11;10285:55;10371:6;10366:2;10361:3;10357:12;10350:28;10404:2;10399:3;10395:12;10388:19;;10191:222;;;:::o;10419:323::-;;10582:67;10646:2;10641:3;10582:67;:::i;:::-;10575:74;;10679:27;10675:1;10670:3;10666:11;10659:48;10733:2;10728:3;10724:12;10717:19;;10565:177;;;:::o;10748:367::-;;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;11008:34;11004:1;10999:3;10995:11;10988:55;11074:5;11069:2;11064:3;11060:12;11053:27;11106:2;11101:3;11097:12;11090:19;;10894:221;;;:::o;11121:376::-;;11284:67;11348:2;11343:3;11284:67;:::i;:::-;11277:74;;11381:34;11377:1;11372:3;11368:11;11361:55;11447:14;11442:2;11437:3;11433:12;11426:36;11488:2;11483:3;11479:12;11472:19;;11267:230;;;:::o;11503:388::-;;11666:67;11730:2;11725:3;11666:67;:::i;:::-;11659:74;;11763:34;11759:1;11754:3;11750:11;11743:55;11829:26;11824:2;11819:3;11815:12;11808:48;11882:2;11877:3;11873:12;11866:19;;11649:242;;;:::o;11897:374::-;;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12157:34;12153:1;12148:3;12144:11;12137:55;12223:12;12218:2;12213:3;12209:12;12202:34;12262:2;12257:3;12253:12;12246:19;;12043:228;;;:::o;12277:373::-;;12440:67;12504:2;12499:3;12440:67;:::i;:::-;12433:74;;12537:34;12533:1;12528:3;12524:11;12517:55;12603:11;12598:2;12593:3;12589:12;12582:33;12641:2;12636:3;12632:12;12625:19;;12423:227;;;:::o;12656:330::-;;12819:67;12883:2;12878:3;12819:67;:::i;:::-;12812:74;;12916:34;12912:1;12907:3;12903:11;12896:55;12977:2;12972:3;12968:12;12961:19;;12802:184;;;:::o;12992:321::-;;13155:67;13219:2;13214:3;13155:67;:::i;:::-;13148:74;;13252:25;13248:1;13243:3;13239:11;13232:46;13304:2;13299:3;13295:12;13288:19;;13138:175;;;:::o;13319:376::-;;13482:67;13546:2;13541:3;13482:67;:::i;:::-;13475:74;;13579:34;13575:1;13570:3;13566:11;13559:55;13645:14;13640:2;13635:3;13631:12;13624:36;13686:2;13681:3;13677:12;13670:19;;13465:230;;;:::o;13701:330::-;;13864:67;13928:2;13923:3;13864:67;:::i;:::-;13857:74;;13961:34;13957:1;13952:3;13948:11;13941:55;14022:2;14017:3;14013:12;14006:19;;13847:184;;;:::o;14037:373::-;;14200:67;14264:2;14259:3;14200:67;:::i;:::-;14193:74;;14297:34;14293:1;14288:3;14284:11;14277:55;14363:11;14358:2;14353:3;14349:12;14342:33;14401:2;14396:3;14392:12;14385:19;;14183:227;;;:::o;14416:379::-;;14579:67;14643:2;14638:3;14579:67;:::i;:::-;14572:74;;14676:34;14672:1;14667:3;14663:11;14656:55;14742:17;14737:2;14732:3;14728:12;14721:39;14786:2;14781:3;14777:12;14770:19;;14562:233;;;:::o;14801:365::-;;14964:67;15028:2;15023:3;14964:67;:::i;:::-;14957:74;;15061:34;15057:1;15052:3;15048:11;15041:55;15127:3;15122:2;15117:3;15113:12;15106:25;15157:2;15152:3;15148:12;15141:19;;14947:219;;;:::o;15172:297::-;;15352:83;15433:1;15428:3;15352:83;:::i;:::-;15345:90;;15461:1;15456:3;15452:11;15445:18;;15335:134;;;:::o;15475:381::-;;15638:67;15702:2;15697:3;15638:67;:::i;:::-;15631:74;;15735:34;15731:1;15726:3;15722:11;15715:55;15801:19;15796:2;15791:3;15787:12;15780:41;15847:2;15842:3;15838:12;15831:19;;15621:235;;;:::o;15862:319::-;;16025:67;16089:2;16084:3;16025:67;:::i;:::-;16018:74;;16122:23;16118:1;16113:3;16109:11;16102:44;16172:2;16167:3;16163:12;16156:19;;16008:173;;;:::o;16187:329::-;;16350:67;16414:2;16409:3;16350:67;:::i;:::-;16343:74;;16447:33;16443:1;16438:3;16434:11;16427:54;16507:2;16502:3;16498:12;16491:19;;16333:183;;;:::o;16522:118::-;16609:24;16627:5;16609:24;:::i;:::-;16604:3;16597:37;16587:53;;:::o;16646:435::-;;16848:95;16939:3;16930:6;16848:95;:::i;:::-;16841:102;;16960:95;17051:3;17042:6;16960:95;:::i;:::-;16953:102;;17072:3;17065:10;;16830:251;;;;;:::o;17087:379::-;;17293:147;17436:3;17293:147;:::i;:::-;17286:154;;17457:3;17450:10;;17275:191;;;:::o;17472:222::-;;17603:2;17592:9;17588:18;17580:26;;17616:71;17684:1;17673:9;17669:17;17660:6;17616:71;:::i;:::-;17570:124;;;;:::o;17700:640::-;;17933:3;17922:9;17918:19;17910:27;;17947:71;18015:1;18004:9;18000:17;17991:6;17947:71;:::i;:::-;18028:72;18096:2;18085:9;18081:18;18072:6;18028:72;:::i;:::-;18110;18178:2;18167:9;18163:18;18154:6;18110:72;:::i;:::-;18229:9;18223:4;18219:20;18214:2;18203:9;18199:18;18192:48;18257:76;18328:4;18319:6;18257:76;:::i;:::-;18249:84;;17900:440;;;;;;;:::o;18346:210::-;;18471:2;18460:9;18456:18;18448:26;;18484:65;18546:1;18535:9;18531:17;18522:6;18484:65;:::i;:::-;18438:118;;;;:::o;18562:313::-;;18713:2;18702:9;18698:18;18690:26;;18762:9;18756:4;18752:20;18748:1;18737:9;18733:17;18726:47;18790:78;18863:4;18854:6;18790:78;:::i;:::-;18782:86;;18680:195;;;;:::o;18881:419::-;;19085:2;19074:9;19070:18;19062:26;;19134:9;19128:4;19124:20;19120:1;19109:9;19105:17;19098:47;19162:131;19288:4;19162:131;:::i;:::-;19154:139;;19052:248;;;:::o;19306:419::-;;19510:2;19499:9;19495:18;19487:26;;19559:9;19553:4;19549:20;19545:1;19534:9;19530:17;19523:47;19587:131;19713:4;19587:131;:::i;:::-;19579:139;;19477:248;;;:::o;19731:419::-;;19935:2;19924:9;19920:18;19912:26;;19984:9;19978:4;19974:20;19970:1;19959:9;19955:17;19948:47;20012:131;20138:4;20012:131;:::i;:::-;20004:139;;19902:248;;;:::o;20156:419::-;;20360:2;20349:9;20345:18;20337:26;;20409:9;20403:4;20399:20;20395:1;20384:9;20380:17;20373:47;20437:131;20563:4;20437:131;:::i;:::-;20429:139;;20327:248;;;:::o;20581:419::-;;20785:2;20774:9;20770:18;20762:26;;20834:9;20828:4;20824:20;20820:1;20809:9;20805:17;20798:47;20862:131;20988:4;20862:131;:::i;:::-;20854:139;;20752:248;;;:::o;21006:419::-;;21210:2;21199:9;21195:18;21187:26;;21259:9;21253:4;21249:20;21245:1;21234:9;21230:17;21223:47;21287:131;21413:4;21287:131;:::i;:::-;21279:139;;21177:248;;;:::o;21431:419::-;;21635:2;21624:9;21620:18;21612:26;;21684:9;21678:4;21674:20;21670:1;21659:9;21655:17;21648:47;21712:131;21838:4;21712:131;:::i;:::-;21704:139;;21602:248;;;:::o;21856:419::-;;22060:2;22049:9;22045:18;22037:26;;22109:9;22103:4;22099:20;22095:1;22084:9;22080:17;22073:47;22137:131;22263:4;22137:131;:::i;:::-;22129:139;;22027:248;;;:::o;22281:419::-;;22485:2;22474:9;22470:18;22462:26;;22534:9;22528:4;22524:20;22520:1;22509:9;22505:17;22498:47;22562:131;22688:4;22562:131;:::i;:::-;22554:139;;22452:248;;;:::o;22706:419::-;;22910:2;22899:9;22895:18;22887:26;;22959:9;22953:4;22949:20;22945:1;22934:9;22930:17;22923:47;22987:131;23113:4;22987:131;:::i;:::-;22979:139;;22877:248;;;:::o;23131:419::-;;23335:2;23324:9;23320:18;23312:26;;23384:9;23378:4;23374:20;23370:1;23359:9;23355:17;23348:47;23412:131;23538:4;23412:131;:::i;:::-;23404:139;;23302:248;;;:::o;23556:419::-;;23760:2;23749:9;23745:18;23737:26;;23809:9;23803:4;23799:20;23795:1;23784:9;23780:17;23773:47;23837:131;23963:4;23837:131;:::i;:::-;23829:139;;23727:248;;;:::o;23981:419::-;;24185:2;24174:9;24170:18;24162:26;;24234:9;24228:4;24224:20;24220:1;24209:9;24205:17;24198:47;24262:131;24388:4;24262:131;:::i;:::-;24254:139;;24152:248;;;:::o;24406:419::-;;24610:2;24599:9;24595:18;24587:26;;24659:9;24653:4;24649:20;24645:1;24634:9;24630:17;24623:47;24687:131;24813:4;24687:131;:::i;:::-;24679:139;;24577:248;;;:::o;24831:419::-;;25035:2;25024:9;25020:18;25012:26;;25084:9;25078:4;25074:20;25070:1;25059:9;25055:17;25048:47;25112:131;25238:4;25112:131;:::i;:::-;25104:139;;25002:248;;;:::o;25256:419::-;;25460:2;25449:9;25445:18;25437:26;;25509:9;25503:4;25499:20;25495:1;25484:9;25480:17;25473:47;25537:131;25663:4;25537:131;:::i;:::-;25529:139;;25427:248;;;:::o;25681:419::-;;25885:2;25874:9;25870:18;25862:26;;25934:9;25928:4;25924:20;25920:1;25909:9;25905:17;25898:47;25962:131;26088:4;25962:131;:::i;:::-;25954:139;;25852:248;;;:::o;26106:419::-;;26310:2;26299:9;26295:18;26287:26;;26359:9;26353:4;26349:20;26345:1;26334:9;26330:17;26323:47;26387:131;26513:4;26387:131;:::i;:::-;26379:139;;26277:248;;;:::o;26531:419::-;;26735:2;26724:9;26720:18;26712:26;;26784:9;26778:4;26774:20;26770:1;26759:9;26755:17;26748:47;26812:131;26938:4;26812:131;:::i;:::-;26804:139;;26702:248;;;:::o;26956:419::-;;27160:2;27149:9;27145:18;27137:26;;27209:9;27203:4;27199:20;27195:1;27184:9;27180:17;27173:47;27237:131;27363:4;27237:131;:::i;:::-;27229:139;;27127:248;;;:::o;27381:419::-;;27585:2;27574:9;27570:18;27562:26;;27634:9;27628:4;27624:20;27620:1;27609:9;27605:17;27598:47;27662:131;27788:4;27662:131;:::i;:::-;27654:139;;27552:248;;;:::o;27806:419::-;;28010:2;27999:9;27995:18;27987:26;;28059:9;28053:4;28049:20;28045:1;28034:9;28030:17;28023:47;28087:131;28213:4;28087:131;:::i;:::-;28079:139;;27977:248;;;:::o;28231:222::-;;28362:2;28351:9;28347:18;28339:26;;28375:71;28443:1;28432:9;28428:17;28419:6;28375:71;:::i;:::-;28329:124;;;;:::o;28459:442::-;;28646:2;28635:9;28631:18;28623:26;;28659:71;28727:1;28716:9;28712:17;28703:6;28659:71;:::i;:::-;28740:72;28808:2;28797:9;28793:18;28784:6;28740:72;:::i;:::-;28822;28890:2;28879:9;28875:18;28866:6;28822:72;:::i;:::-;28613:288;;;;;;:::o;28907:283::-;;28973:2;28967:9;28957:19;;29015:4;29007:6;29003:17;29122:6;29110:10;29107:22;29086:18;29074:10;29071:34;29068:62;29065:2;;;29133:18;;:::i;:::-;29065:2;29173:10;29169:2;29162:22;28947:243;;;;:::o;29196:331::-;;29347:18;29339:6;29336:30;29333:2;;;29369:18;;:::i;:::-;29333:2;29454:4;29450:9;29443:4;29435:6;29431:17;29427:33;29419:41;;29515:4;29509;29505:15;29497:23;;29262:265;;;:::o;29533:332::-;;29685:18;29677:6;29674:30;29671:2;;;29707:18;;:::i;:::-;29671:2;29792:4;29788:9;29781:4;29773:6;29769:17;29765:33;29757:41;;29853:4;29847;29843:15;29835:23;;29600:265;;;:::o;29871:98::-;;29956:5;29950:12;29940:22;;29929:40;;;:::o;29975:99::-;;30061:5;30055:12;30045:22;;30034:40;;;:::o;30080:168::-;;30197:6;30192:3;30185:19;30237:4;30232:3;30228:14;30213:29;;30175:73;;;;:::o;30254:147::-;;30392:3;30377:18;;30367:34;;;;:::o;30407:169::-;;30525:6;30520:3;30513:19;30565:4;30560:3;30556:14;30541:29;;30503:73;;;;:::o;30582:148::-;;30721:3;30706:18;;30696:34;;;;:::o;30736:305::-;;30795:20;30813:1;30795:20;:::i;:::-;30790:25;;30829:20;30847:1;30829:20;:::i;:::-;30824:25;;30983:1;30915:66;30911:74;30908:1;30905:81;30902:2;;;30989:18;;:::i;:::-;30902:2;31033:1;31030;31026:9;31019:16;;30780:261;;;;:::o;31047:185::-;;31104:20;31122:1;31104:20;:::i;:::-;31099:25;;31138:20;31156:1;31138:20;:::i;:::-;31133:25;;31177:1;31167:2;;31182:18;;:::i;:::-;31167:2;31224:1;31221;31217:9;31212:14;;31089:143;;;;:::o;31238:348::-;;31301:20;31319:1;31301:20;:::i;:::-;31296:25;;31335:20;31353:1;31335:20;:::i;:::-;31330:25;;31523:1;31455:66;31451:74;31448:1;31445:81;31440:1;31433:9;31426:17;31422:105;31419:2;;;31530:18;;:::i;:::-;31419:2;31578:1;31575;31571:9;31560:20;;31286:300;;;;:::o;31592:191::-;;31652:20;31670:1;31652:20;:::i;:::-;31647:25;;31686:20;31704:1;31686:20;:::i;:::-;31681:25;;31725:1;31722;31719:8;31716:2;;;31730:18;;:::i;:::-;31716:2;31775:1;31772;31768:9;31760:17;;31637:146;;;;:::o;31789:96::-;;31855:24;31873:5;31855:24;:::i;:::-;31844:35;;31834:51;;;:::o;31891:104::-;;31965:24;31983:5;31965:24;:::i;:::-;31954:35;;31944:51;;;:::o;32001:90::-;;32078:5;32071:13;32064:21;32053:32;;32043:48;;;:::o;32097:149::-;;32173:66;32166:5;32162:78;32151:89;;32141:105;;;:::o;32252:126::-;;32329:42;32322:5;32318:54;32307:65;;32297:81;;;:::o;32384:77::-;;32450:5;32439:16;;32429:32;;;:::o;32467:154::-;32551:6;32546:3;32541;32528:30;32613:1;32604:6;32599:3;32595:16;32588:27;32518:103;;;:::o;32627:307::-;32695:1;32705:113;32719:6;32716:1;32713:13;32705:113;;;32804:1;32799:3;32795:11;32789:18;32785:1;32780:3;32776:11;32769:39;32741:2;32738:1;32734:10;32729:15;;32705:113;;;32836:6;32833:1;32830:13;32827:2;;;32916:1;32907:6;32902:3;32898:16;32891:27;32827:2;32676:258;;;;:::o;32940:320::-;;33021:1;33015:4;33011:12;33001:22;;33068:1;33062:4;33058:12;33089:18;33079:2;;33145:4;33137:6;33133:17;33123:27;;33079:2;33207;33199:6;33196:14;33176:18;33173:38;33170:2;;;33226:18;;:::i;:::-;33170:2;32991:269;;;;:::o;33266:233::-;;33328:24;33346:5;33328:24;:::i;:::-;33319:33;;33374:66;33367:5;33364:77;33361:2;;;33444:18;;:::i;:::-;33361:2;33491:1;33484:5;33480:13;33473:20;;33309:190;;;:::o;33505:176::-;;33554:20;33572:1;33554:20;:::i;:::-;33549:25;;33588:20;33606:1;33588:20;:::i;:::-;33583:25;;33627:1;33617:2;;33632:18;;:::i;:::-;33617:2;33673:1;33670;33666:9;33661:14;;33539:142;;;;:::o;33687:180::-;33735:77;33732:1;33725:88;33832:4;33829:1;33822:15;33856:4;33853:1;33846:15;33873:180;33921:77;33918:1;33911:88;34018:4;34015:1;34008:15;34042:4;34039:1;34032:15;34059:180;34107:77;34104:1;34097:88;34204:4;34201:1;34194:15;34228:4;34225:1;34218:15;34245:180;34293:77;34290:1;34283:88;34390:4;34387:1;34380:15;34414:4;34411:1;34404:15;34431:102;;34523:2;34519:7;34514:2;34507:5;34503:14;34499:28;34489:38;;34479:54;;;:::o;34539:122::-;34612:24;34630:5;34612:24;:::i;:::-;34605:5;34602:35;34592:2;;34651:1;34648;34641:12;34592:2;34582:79;:::o;34667:138::-;34748:32;34774:5;34748:32;:::i;:::-;34741:5;34738:43;34728:2;;34795:1;34792;34785:12;34728:2;34718:87;:::o;34811:116::-;34881:21;34896:5;34881:21;:::i;:::-;34874:5;34871:32;34861:2;;34917:1;34914;34907:12;34861:2;34851:76;:::o;34933:120::-;35005:23;35022:5;35005:23;:::i;:::-;34998:5;34995:34;34985:2;;35043:1;35040;35033:12;34985:2;34975:78;:::o;35059:122::-;35132:24;35150:5;35132:24;:::i;:::-;35125:5;35122:35;35112:2;;35171:1;35168;35161:12;35112:2;35102:79;:::o

Swarm Source

ipfs://362933ce750181e56d0061ed6894deb585973721948bee5d8055264c27aecb7c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.