ETH Price: $3,099.16 (+1.00%)
Gas: 10 Gwei

Token

Peace Aliens (ALIEN)
 

Overview

Max Total Supply

412 ALIEN

Holders

373

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ALIEN
0x6458d89ed089c4acdd99af54e0e92f67c8dea889
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:
PeaceAliens

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-14
*/

/**
                              Peace Aliens                                      
                                                                                
                               _,╥≤≡∞Rªª▀▀████▄▄╓_                              
                           ╓≡"`                  '╙▀φ,                          
                        ╓M`                           `▀╗_                      
                _╓,_  ▄^             ,«ⁿ<,               `▀╖                    
              ╓▀ ,▄ ª▌              ^ ,═_ ¼                 ╙▄                  
             ╒ ╓^  █_ ▌            Γ /  ╘╕ ╕                  ▀╕                
             ▌┌   ▌ ╙             Å A    ╘_╚                    ▌               
            ▐ ▌  █                Γ┌      └                      █              
            ╫ L ┌                  ╠                              L             
            █ L █                  ╡                              ▐             
            ╟ ▀╥▌                ┌%└╗                             ║             
         '▓▓▌_,▓▌                ╙╖╖═                          _▄A╜▀▀▀▀▀▀▄      
          '▓╬╬╬▓█   ╓▄_    ,                               _«^`        ▄▀       
           ╘▓▓▓▓█▌  ████▄ ███_    ▄███  ,▄████▄▄         ╒^    _     ╓█         
            ╘▓▓▓██  █Γ     ▀█▌   ████▀    ╙█████       ╒^ ,▄▓▓▓^    █^          
             └▓▓╣█  ╟█_  _█         ▄L    ▐████`        Φ▓▓▓▓^    ▄▀            
              `█▓█   ╚Ü╚▄██▌       ███▀æφ╬Ü╟██          ╘▓▀`   ▄A`              
                `█     ╙▀███      ▐█████▒▄▄▀              ▄*ª"                  
                 ╫    ,,             ``` _               █                      
                 ╞          ╓   ╓       ^r              ▄^                      
                  ▀▄        'ⁿ`ª═`                   ▄#^                        
                    "¥≥▄▄__                    _▄▄A"`                           
                           `"""""ªªªª▀█▓▓▓▓█""                                  
                       ▄╗             █▓▓▀╙█      ╓▀_   _                       
                  ┌@╗_ ╟ ▀_      __,∞^^     ▀╗,_  ▌ ▌ ╓Ñ╫                       
                   ╙▄'▄ █ █    /Γ               '█ ▐L▐M▐`                       
                    `▌'▌█ █^`▓▀                 ⌐╪▌ ▀█ █                        
                     █^^``▀▄╣▌╒                '▄_║^```_▌                       
                     ╙"^`"▌`╜╒                  ╘▄▌φ^`_▄                        
                      `▀ ` '▓                 '_ ▐  `█"                         
                       ╫   ╒▌                  ▓ ╞    ▌                         
                       ▌   ▓                   ╘ ╞    ▐                         
                       █  ▓                     ▌Φ     L                        
                        `█╬                     ╣▄    Ä                         
                                                                                
                          https://peacealiens.com                               
**/

// File: @openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/interfaces/IERC721.sol

pragma solidity ^0.8.0;

// File: contracts/PeaceAliens.sol

pragma solidity ^0.8.4;

contract PeaceAliens is ERC721Enumerable, Ownable {

    using SafeMath for uint256;
    using Strings for uint256;

    bool public _isSaleActive = false;
    bool public _isFriendSaleActive = false;
    string private _baseURIExtended;
    uint256 public maxMintablePerCall = 20;
    address[] public friendCommunities;
    uint256 public freePeaceAliensAvailable = 0;

    // Constants
    uint256 public constant MAX_SUPPLY = 8877;
    uint256 public NFT_PRICE = .03 ether;
    uint256 public MAX_NFT_PER_COMMUNITY_FRIEND = 1;

    event FriendSaleStarted();
    event FriendSaleStopped();
    event SaleStarted();
    event SaleStopped();
    event TokenMinted(uint256 supply);

    constructor() ERC721('Peace Aliens', 'ALIEN') {}

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

    function getPeaceAliensByOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function _baseMint (uint256 num_tokens, address to) internal {
        require(totalSupply().add(num_tokens) <= MAX_SUPPLY, 'Sale would exceed max supply');
        uint256 supply = totalSupply();
        for (uint i = 0; i < num_tokens; i++) {
            _safeMint(to, supply + i);
        }
        emit TokenMinted(totalSupply());
    }

    function mint(address _to, uint _count) public payable {
        require(_isSaleActive, 'Sale must be active to mint Peace Aliens');
        require(NFT_PRICE * _count <= msg.value, 'Not enough ether sent (check NFT_PRICE for current token price)');
        require(_count <= maxMintablePerCall, 'Exceeding max mintable limit for contract call');
        _baseMint(_count, _to);
    }

    function friendMint(address _friendCollection) external {
        require(_isFriendSaleActive, 'FriendSale must be active to mint Peace Aliens');
        
        // require that max number of Peace Aliens mintable for free has not been already reached
        require(freePeaceAliensAvailable >= 1, "Reached max number of free Peace Aliens mintable");

        // required that _friendCollection is in friendCommunities
        require(isAddressAFriendCommunity(_friendCollection), 'friendCollection needs to be in friend community');

        // required that sender has no more than MAX_NFT_PER_COMMUNITY_FRIEND NFTs
        require( this.balanceOf(msg.sender) < MAX_NFT_PER_COMMUNITY_FRIEND, "Max Peace Aliens mintable for free reached" );

        // require that sender has at least 1 NFT in friendCommunity
        IERC721 friendContract = IERC721(_friendCollection);
        uint256 balance = friendContract.balanceOf(msg.sender);
        require(balance >= 1, "Need to own at least one token from given collection");
        
        _baseMint(1, msg.sender);
        freePeaceAliensAvailable = freePeaceAliensAvailable - 1;
    }

    function isAddressAFriendCommunity(address c) public view returns (bool) {
        bool isFriend = false;
        for (uint i = 0; i < friendCommunities.length; i++) {
            if (c == friendCommunities[i]) {
                isFriend = true;
                break;
            }
        }
        return isFriend;
    }

    function ownerMint(address[] memory recipients, uint256[] memory amount) external onlyOwner {
        require(recipients.length == amount.length, 'Arrays needs to be of equal lenght');
        uint256 totalToMint = 0;
        for (uint256 i = 0; i < amount.length; i++) {
            totalToMint = totalToMint + amount[i];
        }
        require(totalSupply().add(totalToMint) <= MAX_SUPPLY, 'Mint will exceed total supply');

        for (uint256 i = 0; i < recipients.length; i++) {
            _baseMint(amount[i], recipients[i]);
        }
    }

    function pauseSale() external onlyOwner {
        _isSaleActive = false;
        emit SaleStopped();
    }

    function pauseFriendSale() external onlyOwner {
        _isFriendSaleActive = false;
        emit FriendSaleStopped();
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function setMaxMintablePerCall(uint256 newMax) external onlyOwner {
        maxMintablePerCall = newMax;
    }

    function setMaxNFtPerCommunityFriend(uint256 newMax) external onlyOwner {
        MAX_NFT_PER_COMMUNITY_FRIEND = newMax;
    }

    function setPrice(uint256 price) external onlyOwner {
        NFT_PRICE = price;
    }

    function setFreePeaceAliensAvailable(uint256 available) external onlyOwner {
        freePeaceAliensAvailable = available;
    }

    function setFriendCommunities (address[] memory collections) external onlyOwner {
        delete friendCommunities;
        friendCommunities = collections;
    }

    function startSale() external onlyOwner {
        _isSaleActive = true;
        emit SaleStarted();
    }
    
    function startFriendSale() external onlyOwner {
        _isFriendSaleActive = true;
        emit FriendSaleStarted();
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');
        return string(abi.encodePacked(_baseURI(), tokenId.toString()));
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[],"name":"FriendSaleStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"FriendSaleStopped","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":[],"name":"SaleStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PER_COMMUNITY_FRIEND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isFriendSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freePeaceAliensAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"friendCommunities","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_friendCollection","type":"address"}],"name":"friendMint","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"}],"name":"getPeaceAliensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"c","type":"address"}],"name":"isAddressAFriendCommunity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintablePerCall","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseFriendSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"available","type":"uint256"}],"name":"setFreePeaceAliensAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"collections","type":"address[]"}],"name":"setFriendCommunities","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMintablePerCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxNFtPerCommunityFriend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startFriendSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805461ffff60a01b191690556014600c556000600e55666a94d74f430000600f5560016010553480156200003957600080fd5b50604080518082018252600c81526b506561636520416c69656e7360a01b60208083019182528351808501909452600584526420a624a2a760d91b9084015281519192916200008b916000916200011a565b508051620000a19060019060208401906200011a565b505050620000be620000b8620000c460201b60201c565b620000c8565b620001fd565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012890620001c0565b90600052602060002090601f0160209004810192826200014c576000855562000197565b82601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b5b80821115620001a55760008155600101620001aa565b600181811c90821680620001d557607f821691505b60208210811415620001f757634e487b7160e01b600052602260045260246000fd5b50919050565b612d9a806200020d6000396000f3fe60806040526004361061025c5760003560e01c8063676dd56311610144578063a22cb465116100b6578063b88d4fde1161007a578063b88d4fde146106c7578063c87b56dd146106e7578063e985e9c514610707578063f180835c14610750578063f2fde38b14610765578063fccef3ef1461078557600080fd5b8063a22cb4651461063c578063a60ac42a1461065c578063af19ee301461067c578063b2ed1d1d14610692578063b66a0e5d146106b257600080fd5b806372f06f521161010857806372f06f52146105885780638da5cb5b146105a95780638ebbcdb4146105c757806391b7f5ed146105e757806395d89b4114610607578063a01d7fee1461061c57600080fd5b8063676dd563146104fc57806369f7d2f2146105125780637080d6fc1461053257806370a0823114610553578063715018a61461057357600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461044757806355367ba91461046757806355f804b31461047c5780635cf55d6f1461049c578063620717db146104bc5780636352211e146104dc57600080fd5b80632f745c59146103c957806332cb6b0c146103e95780633ccfd60b146103ff57806340c10f191461041457806342842e0e1461042757600080fd5b8063152a36e011610224578063152a36e01461032757806318160ddd146103545780631fc31b0e1461037357806323b872dd1461038957806323f7b84f146103a957600080fd5b806301ffc9a71461026157806306fdde031461029657806307ae242e146102b8578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026d57600080fd5b5061028161027c36600461294a565b61079b565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c6565b60405161028d9190612ad4565b3480156102c457600080fd5b506102cd610858565b005b3480156102db57600080fd5b506102ef6102ea3660046129c8565b6108c9565b6040516001600160a01b03909116815260200161028d565b34801561031357600080fd5b506102cd610322366004612832565b61095e565b34801561033357600080fd5b506103476103423660046126f8565b610a74565b60405161028d9190612a90565b34801561036057600080fd5b506008545b60405190815260200161028d565b34801561037f57600080fd5b50610365600e5481565b34801561039557600080fd5b506102cd6103a4366004612744565b610b32565b3480156103b557600080fd5b506102ef6103c43660046129c8565b610b63565b3480156103d557600080fd5b506103656103e4366004612832565b610b8d565b3480156103f557600080fd5b506103656122ad81565b34801561040b57600080fd5b506102cd610c23565b6102cd610422366004612832565b610c80565b34801561043357600080fd5b506102cd610442366004612744565b610de0565b34801561045357600080fd5b506103656104623660046129c8565b610dfb565b34801561047357600080fd5b506102cd610e9c565b34801561048857600080fd5b506102cd610497366004612982565b610efe565b3480156104a857600080fd5b506102cd6104b73660046126f8565b610f3b565b3480156104c857600080fd5b506102816104d73660046126f8565b611264565b3480156104e857600080fd5b506102ef6104f73660046129c8565b6112d5565b34801561050857600080fd5b50610365600f5481565b34801561051e57600080fd5b506102cd61052d36600461288e565b61134c565b34801561053e57600080fd5b50600a5461028190600160a01b900460ff1681565b34801561055f57600080fd5b5061036561056e3660046126f8565b611507565b34801561057f57600080fd5b506102cd61158e565b34801561059457600080fd5b50600a5461028190600160a81b900460ff1681565b3480156105b557600080fd5b50600a546001600160a01b03166102ef565b3480156105d357600080fd5b506102cd6105e23660046129c8565b6115c4565b3480156105f357600080fd5b506102cd6106023660046129c8565b6115f3565b34801561061357600080fd5b506102ab611622565b34801561062857600080fd5b506102cd61063736600461285b565b611631565b34801561064857600080fd5b506102cd6106573660046127f8565b61167a565b34801561066857600080fd5b506102cd6106773660046129c8565b61173f565b34801561068857600080fd5b5061036560105481565b34801561069e57600080fd5b506102cd6106ad3660046129c8565b61176e565b3480156106be57600080fd5b506102cd61179d565b3480156106d357600080fd5b506102cd6106e236600461277f565b611805565b3480156106f357600080fd5b506102ab6107023660046129c8565b611837565b34801561071357600080fd5b50610281610722366004612712565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075c57600080fd5b506102cd6118ee565b34801561077157600080fd5b506102cd6107803660046126f8565b611950565b34801561079157600080fd5b50610365600c5481565b60006001600160e01b0319821663780e9d6360e01b14806107c057506107c0826119eb565b92915050565b6060600080546107d590612ca2565b80601f016020809104026020016040519081016040528092919081815260200182805461080190612ca2565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b600a546001600160a01b0316331461088b5760405162461bcd60e51b815260040161088290612b39565b60405180910390fd5b600a805460ff60a81b1916600160a81b1790556040517f9120b332f2e0e3174c205229e106968a4f816fbd789d0fa9fb02b1acf7dd9e5490600090a1565b6000818152600260205260408120546001600160a01b03166109425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610882565b506000908152600460205260409020546001600160a01b031690565b6000610969826112d5565b9050806001600160a01b0316836001600160a01b031614156109d75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610882565b336001600160a01b03821614806109f357506109f38133610722565b610a655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610882565b610a6f8383611a3b565b505050565b60606000610a8183611507565b905060008167ffffffffffffffff811115610aac57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ad5578160200160208202803683370190505b50905060005b82811015610b2a57610aed8582610b8d565b828281518110610b0d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b2281612cdd565b915050610adb565b509392505050565b610b3c3382611aa9565b610b585760405162461bcd60e51b815260040161088290612b6e565b610a6f838383611ba0565b600d8181548110610b7357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610b9883611507565b8210610bfa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610882565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161088290612b39565b6040514790339082156108fc029083906000818181858888f19350505050158015610c7c573d6000803e3d6000fd5b5050565b600a54600160a01b900460ff16610cea5760405162461bcd60e51b815260206004820152602860248201527f53616c65206d7573742062652061637469766520746f206d696e7420506561636044820152676520416c69656e7360c01b6064820152608401610882565b3481600f54610cf99190612c40565b1115610d6d5760405162461bcd60e51b815260206004820152603f60248201527f4e6f7420656e6f7567682065746865722073656e742028636865636b204e465460448201527f5f505249434520666f722063757272656e7420746f6b656e20707269636529006064820152608401610882565b600c54811115610dd65760405162461bcd60e51b815260206004820152602e60248201527f457863656564696e67206d6178206d696e7461626c65206c696d697420666f7260448201526d0818dbdb9d1c9858dd0818d85b1b60921b6064820152608401610882565b610c7c8183611d4b565b610a6f83838360405180602001604052806000815250611805565b6000610e0660085490565b8210610e695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610882565b60088281548110610e8a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ec65760405162461bcd60e51b815260040161088290612b39565b600a805460ff60a01b191690556040517fdf515ab57ec796fd111da4dd488177601b9465ce9c442de16857682b7f10297a90600090a1565b600a546001600160a01b03163314610f285760405162461bcd60e51b815260040161088290612b39565b8051610c7c90600b906020840190612502565b600a54600160a81b900460ff16610fab5760405162461bcd60e51b815260206004820152602e60248201527f467269656e6453616c65206d7573742062652061637469766520746f206d696e60448201526d7420506561636520416c69656e7360901b6064820152608401610882565b6001600e5410156110175760405162461bcd60e51b815260206004820152603060248201527f52656163686564206d6178206e756d626572206f66206672656520506561636560448201526f20416c69656e73206d696e7461626c6560801b6064820152608401610882565b61102081611264565b6110855760405162461bcd60e51b815260206004820152603060248201527f667269656e64436f6c6c656374696f6e206e6565647320746f20626520696e2060448201526f667269656e6420636f6d6d756e69747960801b6064820152608401610882565b6010546040516370a0823160e01b815233600482015230906370a082319060240160206040518083038186803b1580156110be57600080fd5b505afa1580156110d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f691906129e0565b106111565760405162461bcd60e51b815260206004820152602a60248201527f4d617820506561636520416c69656e73206d696e7461626c6520666f722066726044820152691959481c995858da195960b21b6064820152608401610882565b6040516370a0823160e01b815233600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561119a57600080fd5b505afa1580156111ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d291906129e0565b905060018110156112425760405162461bcd60e51b815260206004820152603460248201527f4e65656420746f206f776e206174206c65617374206f6e6520746f6b656e20666044820152733937b69033b4bb32b71031b7b63632b1ba34b7b760611b6064820152608401610882565b61124d600133611d4b565b6001600e5461125c9190612c5f565b600e55505050565b600080805b600d548110156112ce57600d818154811061129457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03858116911614156112bc57600191506112ce565b806112c681612cdd565b915050611269565b5092915050565b6000818152600260205260408120546001600160a01b0316806107c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610882565b600a546001600160a01b031633146113765760405162461bcd60e51b815260040161088290612b39565b80518251146113d25760405162461bcd60e51b815260206004820152602260248201527f417272617973206e6565647320746f206265206f6620657175616c206c656e676044820152611a1d60f21b6064820152608401610882565b6000805b8251811015611426578281815181106113ff57634e487b7160e01b600052603260045260246000fd5b6020026020010151826114129190612c14565b91508061141e81612cdd565b9150506113d6565b506122ad61143d8261143760085490565b90611e27565b111561148b5760405162461bcd60e51b815260206004820152601d60248201527f4d696e742077696c6c2065786365656420746f74616c20737570706c790000006044820152606401610882565b60005b8351811015611501576114ef8382815181106114ba57634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106114e257634e487b7160e01b600052603260045260246000fd5b6020026020010151611d4b565b806114f981612cdd565b91505061148e565b50505050565b60006001600160a01b0382166115725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610882565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115b85760405162461bcd60e51b815260040161088290612b39565b6115c26000611e3a565b565b600a546001600160a01b031633146115ee5760405162461bcd60e51b815260040161088290612b39565b600c55565b600a546001600160a01b0316331461161d5760405162461bcd60e51b815260040161088290612b39565b600f55565b6060600180546107d590612ca2565b600a546001600160a01b0316331461165b5760405162461bcd60e51b815260040161088290612b39565b611667600d6000612586565b8051610c7c90600d9060208401906125a4565b6001600160a01b0382163314156116d35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610882565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117695760405162461bcd60e51b815260040161088290612b39565b600e55565b600a546001600160a01b031633146117985760405162461bcd60e51b815260040161088290612b39565b601055565b600a546001600160a01b031633146117c75760405162461bcd60e51b815260040161088290612b39565b600a805460ff60a01b1916600160a01b1790556040517f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb90600090a1565b61180f3383611aa9565b61182b5760405162461bcd60e51b815260040161088290612b6e565b61150184848484611e8c565b6000818152600260205260409020546060906001600160a01b03166118b65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610882565b6118be611ebf565b6118c783611ece565b6040516020016118d8929190612a24565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146119185760405162461bcd60e51b815260040161088290612b39565b600a805460ff60a81b191690556040517f051b1a15cd1c7fece012ad3fe920b28e64cd831e5761b2ffa0dd5a905ddd385290600090a1565b600a546001600160a01b0316331461197a5760405162461bcd60e51b815260040161088290612b39565b6001600160a01b0381166119df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610882565b6119e881611e3a565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a1c57506001600160e01b03198216635b5e139f60e01b145b806107c057506301ffc9a760e01b6001600160e01b03198316146107c0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a70826112d5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610882565b6000611b2d836112d5565b9050806001600160a01b0316846001600160a01b03161480611b685750836001600160a01b0316611b5d846108c9565b6001600160a01b0316145b80611b9857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bb3826112d5565b6001600160a01b031614611c1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610882565b6001600160a01b038216611c7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610882565b611c88838383611fe8565b611c93600082611a3b565b6001600160a01b0383166000908152600360205260408120805460019290611cbc908490612c5f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cea908490612c14565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6122ad611d5b8361143760085490565b1115611da95760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610882565b6000611db460085490565b905060005b83811015611de657611dd483611dcf8385612c14565b6120a0565b80611dde81612cdd565b915050611db9565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e611e1160085490565b60405190815260200160405180910390a1505050565b6000611e338284612c14565b9392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e97848484611ba0565b611ea3848484846120ba565b6115015760405162461bcd60e51b815260040161088290612ae7565b6060600b80546107d590612ca2565b606081611ef25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f1c5780611f0681612cdd565b9150611f159050600a83612c2c565b9150611ef6565b60008167ffffffffffffffff811115611f4557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f6f576020820181803683370190505b5090505b8415611b9857611f84600183612c5f565b9150611f91600a86612cf8565b611f9c906030612c14565b60f81b818381518110611fbf57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fe1600a86612c2c565b9450611f73565b6001600160a01b0383166120435761203e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612066565b816001600160a01b0316836001600160a01b0316146120665761206683826121c7565b6001600160a01b03821661207d57610a6f81612264565b826001600160a01b0316826001600160a01b031614610a6f57610a6f828261233d565b610c7c828260405180602001604052806000815250612381565b60006001600160a01b0384163b156121bc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120fe903390899088908890600401612a53565b602060405180830381600087803b15801561211857600080fd5b505af1925050508015612148575060408051601f3d908101601f1916820190925261214591810190612966565b60015b6121a2573d808015612176576040519150601f19603f3d011682016040523d82523d6000602084013e61217b565b606091505b50805161219a5760405162461bcd60e51b815260040161088290612ae7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b98565b506001949350505050565b600060016121d484611507565b6121de9190612c5f565b600083815260076020526040902054909150808214612231576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061227690600190612c5f565b600083815260096020526040812054600880549394509092849081106122ac57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122db57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061232157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061234883611507565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61238b83836123b4565b61239860008484846120ba565b610a6f5760405162461bcd60e51b815260040161088290612ae7565b6001600160a01b03821661240a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610882565b6000818152600260205260409020546001600160a01b03161561246f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610882565b61247b60008383611fe8565b6001600160a01b03821660009081526003602052604081208054600192906124a4908490612c14565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461250e90612ca2565b90600052602060002090601f0160209004810192826125305760008555612576565b82601f1061254957805160ff1916838001178555612576565b82800160010185558215612576579182015b8281111561257657825182559160200191906001019061255b565b506125829291506125f9565b5090565b50805460008255906000526020600020908101906119e891906125f9565b828054828255906000526020600020908101928215612576579160200282015b8281111561257657825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906125c4565b5b8082111561258257600081556001016125fa565b600067ffffffffffffffff83111561262857612628612d38565b61263b601f8401601f1916602001612bbf565b905082815283838301111561264f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461267d57600080fd5b919050565b600082601f830112612692578081fd5b813560206126a76126a283612bf0565b612bbf565b80838252828201915082860187848660051b89010111156126c6578586fd5b855b858110156126eb576126d982612666565b845292840192908401906001016126c8565b5090979650505050505050565b600060208284031215612709578081fd5b611e3382612666565b60008060408385031215612724578081fd5b61272d83612666565b915061273b60208401612666565b90509250929050565b600080600060608486031215612758578081fd5b61276184612666565b925061276f60208501612666565b9150604084013590509250925092565b60008060008060808587031215612794578081fd5b61279d85612666565b93506127ab60208601612666565b925060408501359150606085013567ffffffffffffffff8111156127cd578182fd5b8501601f810187136127dd578182fd5b6127ec8782356020840161260e565b91505092959194509250565b6000806040838503121561280a578182fd5b61281383612666565b915060208301358015158114612827578182fd5b809150509250929050565b60008060408385031215612844578182fd5b61284d83612666565b946020939093013593505050565b60006020828403121561286c578081fd5b813567ffffffffffffffff811115612882578182fd5b611b9884828501612682565b600080604083850312156128a0578182fd5b823567ffffffffffffffff808211156128b7578384fd5b6128c386838701612682565b93506020915081850135818111156128d9578384fd5b85019050601f810186136128eb578283fd5b80356128f96126a282612bf0565b80828252848201915084840189868560051b8701011115612918578687fd5b8694505b8385101561293a57803583526001949094019391850191850161291c565b5080955050505050509250929050565b60006020828403121561295b578081fd5b8135611e3381612d4e565b600060208284031215612977578081fd5b8151611e3381612d4e565b600060208284031215612993578081fd5b813567ffffffffffffffff8111156129a9578182fd5b8201601f810184136129b9578182fd5b611b988482356020840161260e565b6000602082840312156129d9578081fd5b5035919050565b6000602082840312156129f1578081fd5b5051919050565b60008151808452612a10816020860160208601612c76565b601f01601f19169290920160200192915050565b60008351612a36818460208801612c76565b835190830190612a4a818360208801612c76565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a86908301846129f8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ac857835183529284019291840191600101612aac565b50909695505050505050565b602081526000611e3360208301846129f8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612be857612be8612d38565b604052919050565b600067ffffffffffffffff821115612c0a57612c0a612d38565b5060051b60200190565b60008219821115612c2757612c27612d0c565b500190565b600082612c3b57612c3b612d22565b500490565b6000816000190483118215151615612c5a57612c5a612d0c565b500290565b600082821015612c7157612c71612d0c565b500390565b60005b83811015612c91578181015183820152602001612c79565b838111156115015750506000910152565b600181811c90821680612cb657607f821691505b60208210811415612cd757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cf157612cf1612d0c565b5060010190565b600082612d0757612d07612d22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119e857600080fdfea2646970667358221220cb43691df388b38d2eab491827a23eaad3789baec0ff7e3021864557b8a6a45364736f6c63430008040033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063676dd56311610144578063a22cb465116100b6578063b88d4fde1161007a578063b88d4fde146106c7578063c87b56dd146106e7578063e985e9c514610707578063f180835c14610750578063f2fde38b14610765578063fccef3ef1461078557600080fd5b8063a22cb4651461063c578063a60ac42a1461065c578063af19ee301461067c578063b2ed1d1d14610692578063b66a0e5d146106b257600080fd5b806372f06f521161010857806372f06f52146105885780638da5cb5b146105a95780638ebbcdb4146105c757806391b7f5ed146105e757806395d89b4114610607578063a01d7fee1461061c57600080fd5b8063676dd563146104fc57806369f7d2f2146105125780637080d6fc1461053257806370a0823114610553578063715018a61461057357600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461044757806355367ba91461046757806355f804b31461047c5780635cf55d6f1461049c578063620717db146104bc5780636352211e146104dc57600080fd5b80632f745c59146103c957806332cb6b0c146103e95780633ccfd60b146103ff57806340c10f191461041457806342842e0e1461042757600080fd5b8063152a36e011610224578063152a36e01461032757806318160ddd146103545780631fc31b0e1461037357806323b872dd1461038957806323f7b84f146103a957600080fd5b806301ffc9a71461026157806306fdde031461029657806307ae242e146102b8578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026d57600080fd5b5061028161027c36600461294a565b61079b565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c6565b60405161028d9190612ad4565b3480156102c457600080fd5b506102cd610858565b005b3480156102db57600080fd5b506102ef6102ea3660046129c8565b6108c9565b6040516001600160a01b03909116815260200161028d565b34801561031357600080fd5b506102cd610322366004612832565b61095e565b34801561033357600080fd5b506103476103423660046126f8565b610a74565b60405161028d9190612a90565b34801561036057600080fd5b506008545b60405190815260200161028d565b34801561037f57600080fd5b50610365600e5481565b34801561039557600080fd5b506102cd6103a4366004612744565b610b32565b3480156103b557600080fd5b506102ef6103c43660046129c8565b610b63565b3480156103d557600080fd5b506103656103e4366004612832565b610b8d565b3480156103f557600080fd5b506103656122ad81565b34801561040b57600080fd5b506102cd610c23565b6102cd610422366004612832565b610c80565b34801561043357600080fd5b506102cd610442366004612744565b610de0565b34801561045357600080fd5b506103656104623660046129c8565b610dfb565b34801561047357600080fd5b506102cd610e9c565b34801561048857600080fd5b506102cd610497366004612982565b610efe565b3480156104a857600080fd5b506102cd6104b73660046126f8565b610f3b565b3480156104c857600080fd5b506102816104d73660046126f8565b611264565b3480156104e857600080fd5b506102ef6104f73660046129c8565b6112d5565b34801561050857600080fd5b50610365600f5481565b34801561051e57600080fd5b506102cd61052d36600461288e565b61134c565b34801561053e57600080fd5b50600a5461028190600160a01b900460ff1681565b34801561055f57600080fd5b5061036561056e3660046126f8565b611507565b34801561057f57600080fd5b506102cd61158e565b34801561059457600080fd5b50600a5461028190600160a81b900460ff1681565b3480156105b557600080fd5b50600a546001600160a01b03166102ef565b3480156105d357600080fd5b506102cd6105e23660046129c8565b6115c4565b3480156105f357600080fd5b506102cd6106023660046129c8565b6115f3565b34801561061357600080fd5b506102ab611622565b34801561062857600080fd5b506102cd61063736600461285b565b611631565b34801561064857600080fd5b506102cd6106573660046127f8565b61167a565b34801561066857600080fd5b506102cd6106773660046129c8565b61173f565b34801561068857600080fd5b5061036560105481565b34801561069e57600080fd5b506102cd6106ad3660046129c8565b61176e565b3480156106be57600080fd5b506102cd61179d565b3480156106d357600080fd5b506102cd6106e236600461277f565b611805565b3480156106f357600080fd5b506102ab6107023660046129c8565b611837565b34801561071357600080fd5b50610281610722366004612712565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075c57600080fd5b506102cd6118ee565b34801561077157600080fd5b506102cd6107803660046126f8565b611950565b34801561079157600080fd5b50610365600c5481565b60006001600160e01b0319821663780e9d6360e01b14806107c057506107c0826119eb565b92915050565b6060600080546107d590612ca2565b80601f016020809104026020016040519081016040528092919081815260200182805461080190612ca2565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b600a546001600160a01b0316331461088b5760405162461bcd60e51b815260040161088290612b39565b60405180910390fd5b600a805460ff60a81b1916600160a81b1790556040517f9120b332f2e0e3174c205229e106968a4f816fbd789d0fa9fb02b1acf7dd9e5490600090a1565b6000818152600260205260408120546001600160a01b03166109425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610882565b506000908152600460205260409020546001600160a01b031690565b6000610969826112d5565b9050806001600160a01b0316836001600160a01b031614156109d75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610882565b336001600160a01b03821614806109f357506109f38133610722565b610a655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610882565b610a6f8383611a3b565b505050565b60606000610a8183611507565b905060008167ffffffffffffffff811115610aac57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ad5578160200160208202803683370190505b50905060005b82811015610b2a57610aed8582610b8d565b828281518110610b0d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b2281612cdd565b915050610adb565b509392505050565b610b3c3382611aa9565b610b585760405162461bcd60e51b815260040161088290612b6e565b610a6f838383611ba0565b600d8181548110610b7357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610b9883611507565b8210610bfa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610882565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161088290612b39565b6040514790339082156108fc029083906000818181858888f19350505050158015610c7c573d6000803e3d6000fd5b5050565b600a54600160a01b900460ff16610cea5760405162461bcd60e51b815260206004820152602860248201527f53616c65206d7573742062652061637469766520746f206d696e7420506561636044820152676520416c69656e7360c01b6064820152608401610882565b3481600f54610cf99190612c40565b1115610d6d5760405162461bcd60e51b815260206004820152603f60248201527f4e6f7420656e6f7567682065746865722073656e742028636865636b204e465460448201527f5f505249434520666f722063757272656e7420746f6b656e20707269636529006064820152608401610882565b600c54811115610dd65760405162461bcd60e51b815260206004820152602e60248201527f457863656564696e67206d6178206d696e7461626c65206c696d697420666f7260448201526d0818dbdb9d1c9858dd0818d85b1b60921b6064820152608401610882565b610c7c8183611d4b565b610a6f83838360405180602001604052806000815250611805565b6000610e0660085490565b8210610e695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610882565b60088281548110610e8a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ec65760405162461bcd60e51b815260040161088290612b39565b600a805460ff60a01b191690556040517fdf515ab57ec796fd111da4dd488177601b9465ce9c442de16857682b7f10297a90600090a1565b600a546001600160a01b03163314610f285760405162461bcd60e51b815260040161088290612b39565b8051610c7c90600b906020840190612502565b600a54600160a81b900460ff16610fab5760405162461bcd60e51b815260206004820152602e60248201527f467269656e6453616c65206d7573742062652061637469766520746f206d696e60448201526d7420506561636520416c69656e7360901b6064820152608401610882565b6001600e5410156110175760405162461bcd60e51b815260206004820152603060248201527f52656163686564206d6178206e756d626572206f66206672656520506561636560448201526f20416c69656e73206d696e7461626c6560801b6064820152608401610882565b61102081611264565b6110855760405162461bcd60e51b815260206004820152603060248201527f667269656e64436f6c6c656374696f6e206e6565647320746f20626520696e2060448201526f667269656e6420636f6d6d756e69747960801b6064820152608401610882565b6010546040516370a0823160e01b815233600482015230906370a082319060240160206040518083038186803b1580156110be57600080fd5b505afa1580156110d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f691906129e0565b106111565760405162461bcd60e51b815260206004820152602a60248201527f4d617820506561636520416c69656e73206d696e7461626c6520666f722066726044820152691959481c995858da195960b21b6064820152608401610882565b6040516370a0823160e01b815233600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561119a57600080fd5b505afa1580156111ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d291906129e0565b905060018110156112425760405162461bcd60e51b815260206004820152603460248201527f4e65656420746f206f776e206174206c65617374206f6e6520746f6b656e20666044820152733937b69033b4bb32b71031b7b63632b1ba34b7b760611b6064820152608401610882565b61124d600133611d4b565b6001600e5461125c9190612c5f565b600e55505050565b600080805b600d548110156112ce57600d818154811061129457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03858116911614156112bc57600191506112ce565b806112c681612cdd565b915050611269565b5092915050565b6000818152600260205260408120546001600160a01b0316806107c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610882565b600a546001600160a01b031633146113765760405162461bcd60e51b815260040161088290612b39565b80518251146113d25760405162461bcd60e51b815260206004820152602260248201527f417272617973206e6565647320746f206265206f6620657175616c206c656e676044820152611a1d60f21b6064820152608401610882565b6000805b8251811015611426578281815181106113ff57634e487b7160e01b600052603260045260246000fd5b6020026020010151826114129190612c14565b91508061141e81612cdd565b9150506113d6565b506122ad61143d8261143760085490565b90611e27565b111561148b5760405162461bcd60e51b815260206004820152601d60248201527f4d696e742077696c6c2065786365656420746f74616c20737570706c790000006044820152606401610882565b60005b8351811015611501576114ef8382815181106114ba57634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106114e257634e487b7160e01b600052603260045260246000fd5b6020026020010151611d4b565b806114f981612cdd565b91505061148e565b50505050565b60006001600160a01b0382166115725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610882565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115b85760405162461bcd60e51b815260040161088290612b39565b6115c26000611e3a565b565b600a546001600160a01b031633146115ee5760405162461bcd60e51b815260040161088290612b39565b600c55565b600a546001600160a01b0316331461161d5760405162461bcd60e51b815260040161088290612b39565b600f55565b6060600180546107d590612ca2565b600a546001600160a01b0316331461165b5760405162461bcd60e51b815260040161088290612b39565b611667600d6000612586565b8051610c7c90600d9060208401906125a4565b6001600160a01b0382163314156116d35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610882565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117695760405162461bcd60e51b815260040161088290612b39565b600e55565b600a546001600160a01b031633146117985760405162461bcd60e51b815260040161088290612b39565b601055565b600a546001600160a01b031633146117c75760405162461bcd60e51b815260040161088290612b39565b600a805460ff60a01b1916600160a01b1790556040517f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb90600090a1565b61180f3383611aa9565b61182b5760405162461bcd60e51b815260040161088290612b6e565b61150184848484611e8c565b6000818152600260205260409020546060906001600160a01b03166118b65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610882565b6118be611ebf565b6118c783611ece565b6040516020016118d8929190612a24565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146119185760405162461bcd60e51b815260040161088290612b39565b600a805460ff60a81b191690556040517f051b1a15cd1c7fece012ad3fe920b28e64cd831e5761b2ffa0dd5a905ddd385290600090a1565b600a546001600160a01b0316331461197a5760405162461bcd60e51b815260040161088290612b39565b6001600160a01b0381166119df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610882565b6119e881611e3a565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a1c57506001600160e01b03198216635b5e139f60e01b145b806107c057506301ffc9a760e01b6001600160e01b03198316146107c0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a70826112d5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610882565b6000611b2d836112d5565b9050806001600160a01b0316846001600160a01b03161480611b685750836001600160a01b0316611b5d846108c9565b6001600160a01b0316145b80611b9857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bb3826112d5565b6001600160a01b031614611c1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610882565b6001600160a01b038216611c7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610882565b611c88838383611fe8565b611c93600082611a3b565b6001600160a01b0383166000908152600360205260408120805460019290611cbc908490612c5f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cea908490612c14565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6122ad611d5b8361143760085490565b1115611da95760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610882565b6000611db460085490565b905060005b83811015611de657611dd483611dcf8385612c14565b6120a0565b80611dde81612cdd565b915050611db9565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e611e1160085490565b60405190815260200160405180910390a1505050565b6000611e338284612c14565b9392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e97848484611ba0565b611ea3848484846120ba565b6115015760405162461bcd60e51b815260040161088290612ae7565b6060600b80546107d590612ca2565b606081611ef25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f1c5780611f0681612cdd565b9150611f159050600a83612c2c565b9150611ef6565b60008167ffffffffffffffff811115611f4557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f6f576020820181803683370190505b5090505b8415611b9857611f84600183612c5f565b9150611f91600a86612cf8565b611f9c906030612c14565b60f81b818381518110611fbf57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fe1600a86612c2c565b9450611f73565b6001600160a01b0383166120435761203e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612066565b816001600160a01b0316836001600160a01b0316146120665761206683826121c7565b6001600160a01b03821661207d57610a6f81612264565b826001600160a01b0316826001600160a01b031614610a6f57610a6f828261233d565b610c7c828260405180602001604052806000815250612381565b60006001600160a01b0384163b156121bc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120fe903390899088908890600401612a53565b602060405180830381600087803b15801561211857600080fd5b505af1925050508015612148575060408051601f3d908101601f1916820190925261214591810190612966565b60015b6121a2573d808015612176576040519150601f19603f3d011682016040523d82523d6000602084013e61217b565b606091505b50805161219a5760405162461bcd60e51b815260040161088290612ae7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b98565b506001949350505050565b600060016121d484611507565b6121de9190612c5f565b600083815260076020526040902054909150808214612231576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061227690600190612c5f565b600083815260096020526040812054600880549394509092849081106122ac57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122db57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061232157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061234883611507565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61238b83836123b4565b61239860008484846120ba565b610a6f5760405162461bcd60e51b815260040161088290612ae7565b6001600160a01b03821661240a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610882565b6000818152600260205260409020546001600160a01b03161561246f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610882565b61247b60008383611fe8565b6001600160a01b03821660009081526003602052604081208054600192906124a4908490612c14565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461250e90612ca2565b90600052602060002090601f0160209004810192826125305760008555612576565b82601f1061254957805160ff1916838001178555612576565b82800160010185558215612576579182015b8281111561257657825182559160200191906001019061255b565b506125829291506125f9565b5090565b50805460008255906000526020600020908101906119e891906125f9565b828054828255906000526020600020908101928215612576579160200282015b8281111561257657825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906125c4565b5b8082111561258257600081556001016125fa565b600067ffffffffffffffff83111561262857612628612d38565b61263b601f8401601f1916602001612bbf565b905082815283838301111561264f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461267d57600080fd5b919050565b600082601f830112612692578081fd5b813560206126a76126a283612bf0565b612bbf565b80838252828201915082860187848660051b89010111156126c6578586fd5b855b858110156126eb576126d982612666565b845292840192908401906001016126c8565b5090979650505050505050565b600060208284031215612709578081fd5b611e3382612666565b60008060408385031215612724578081fd5b61272d83612666565b915061273b60208401612666565b90509250929050565b600080600060608486031215612758578081fd5b61276184612666565b925061276f60208501612666565b9150604084013590509250925092565b60008060008060808587031215612794578081fd5b61279d85612666565b93506127ab60208601612666565b925060408501359150606085013567ffffffffffffffff8111156127cd578182fd5b8501601f810187136127dd578182fd5b6127ec8782356020840161260e565b91505092959194509250565b6000806040838503121561280a578182fd5b61281383612666565b915060208301358015158114612827578182fd5b809150509250929050565b60008060408385031215612844578182fd5b61284d83612666565b946020939093013593505050565b60006020828403121561286c578081fd5b813567ffffffffffffffff811115612882578182fd5b611b9884828501612682565b600080604083850312156128a0578182fd5b823567ffffffffffffffff808211156128b7578384fd5b6128c386838701612682565b93506020915081850135818111156128d9578384fd5b85019050601f810186136128eb578283fd5b80356128f96126a282612bf0565b80828252848201915084840189868560051b8701011115612918578687fd5b8694505b8385101561293a57803583526001949094019391850191850161291c565b5080955050505050509250929050565b60006020828403121561295b578081fd5b8135611e3381612d4e565b600060208284031215612977578081fd5b8151611e3381612d4e565b600060208284031215612993578081fd5b813567ffffffffffffffff8111156129a9578182fd5b8201601f810184136129b9578182fd5b611b988482356020840161260e565b6000602082840312156129d9578081fd5b5035919050565b6000602082840312156129f1578081fd5b5051919050565b60008151808452612a10816020860160208601612c76565b601f01601f19169290920160200192915050565b60008351612a36818460208801612c76565b835190830190612a4a818360208801612c76565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a86908301846129f8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ac857835183529284019291840191600101612aac565b50909695505050505050565b602081526000611e3360208301846129f8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612be857612be8612d38565b604052919050565b600067ffffffffffffffff821115612c0a57612c0a612d38565b5060051b60200190565b60008219821115612c2757612c27612d0c565b500190565b600082612c3b57612c3b612d22565b500490565b6000816000190483118215151615612c5a57612c5a612d0c565b500290565b600082821015612c7157612c71612d0c565b500390565b60005b83811015612c91578181015183820152602001612c79565b838111156115015750506000910152565b600181811c90821680612cb657607f821691505b60208210811415612cd757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cf157612cf1612d0c565b5060010190565b600082612d0757612d07612d22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119e857600080fdfea2646970667358221220cb43691df388b38d2eab491827a23eaad3789baec0ff7e3021864557b8a6a45364736f6c63430008040033

Deployed Bytecode Sourcemap

53992:5777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40740:224;;;;;;;;;;-1:-1:-1;40740:224:0;;;;;:::i;:::-;;:::i;:::-;;;8696:14:1;;8689:22;8671:41;;8659:2;8644:18;40740:224:0;;;;;;;;27649:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59224:126::-;;;;;;;;;;;;;:::i;:::-;;29208:221;;;;;;;;;;-1:-1:-1;29208:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7354:32:1;;;7336:51;;7324:2;7309:18;29208:221:0;7291:102:1;28731:411:0;;;;;;;;;;-1:-1:-1;28731:411:0;;;;;:::i;:::-;;:::i;54884:351::-;;;;;;;;;;-1:-1:-1;54884:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41380:113::-;;;;;;;;;;-1:-1:-1;41468:10:0;:17;41380:113;;;20755:25:1;;;20743:2;20728:18;41380:113:0;20710:76:1;54328:43:0;;;;;;;;;;;;;;;;30098:339;;;;;;;;;;-1:-1:-1;30098:339:0;;;;;:::i;:::-;;:::i;54287:34::-;;;;;;;;;;-1:-1:-1;54287:34:0;;;;;:::i;:::-;;:::i;41048:256::-;;;;;;;;;;-1:-1:-1;41048:256:0;;;;;:::i;:::-;;:::i;54398:41::-;;;;;;;;;;;;54435:4;54398:41;;59623:143;;;;;;;;;;;;;:::i;55598:389::-;;;;;;:::i;:::-;;:::i;30508:185::-;;;;;;;;;;-1:-1:-1;30508:185:0;;;;;:::i;:::-;;:::i;41570:233::-;;;;;;;;;;-1:-1:-1;41570:233:0;;;;;:::i;:::-;;:::i;58072:109::-;;;;;;;;;;;;;:::i;58324:::-;;;;;;;;;;-1:-1:-1;58324:109:0;;;;;:::i;:::-;;:::i;55995:1158::-;;;;;;;;;;-1:-1:-1;55995:1158:0;;;;;:::i;:::-;;:::i;57161:332::-;;;;;;;;;;-1:-1:-1;57161:332:0;;;;;:::i;:::-;;:::i;27343:239::-;;;;;;;;;;-1:-1:-1;27343:239:0;;;;;:::i;:::-;;:::i;54446:36::-;;;;;;;;;;;;;;;;57501:563;;;;;;;;;;-1:-1:-1;57501:563:0;;;;;:::i;:::-;;:::i;54118:33::-;;;;;;;;;;-1:-1:-1;54118:33:0;;;;-1:-1:-1;;;54118:33:0;;;;;;27073:208;;;;;;;;;;-1:-1:-1;27073:208:0;;;;;:::i;:::-;;:::i;6301:94::-;;;;;;;;;;;;;:::i;54158:39::-;;;;;;;;;;-1:-1:-1;54158:39:0;;;;-1:-1:-1;;;54158:39:0;;;;;;5650:87;;;;;;;;;;-1:-1:-1;5723:6:0;;-1:-1:-1;;;;;5723:6:0;5650:87;;58441:112;;;;;;;;;;-1:-1:-1;58441:112:0;;;;;:::i;:::-;;:::i;58697:88::-;;;;;;;;;;-1:-1:-1;58697:88:0;;;;;:::i;:::-;;:::i;27818:104::-;;;;;;;;;;;;;:::i;58931:165::-;;;;;;;;;;-1:-1:-1;58931:165:0;;;;;:::i;:::-;;:::i;29501:295::-;;;;;;;;;;-1:-1:-1;29501:295:0;;;;;:::i;:::-;;:::i;58793:130::-;;;;;;;;;;-1:-1:-1;58793:130:0;;;;;:::i;:::-;;:::i;54489:47::-;;;;;;;;;;;;;;;;58561:128;;;;;;;;;;-1:-1:-1;58561:128:0;;;;;:::i;:::-;;:::i;59104:108::-;;;;;;;;;;;;;:::i;30764:328::-;;;;;;;;;;-1:-1:-1;30764:328:0;;;;;:::i;:::-;;:::i;59358:257::-;;;;;;;;;;-1:-1:-1;59358:257:0;;;;;:::i;:::-;;:::i;29867:164::-;;;;;;;;;;-1:-1:-1;29867:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29988:25:0;;;29964:4;29988:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29867:164;58189:127;;;;;;;;;;;;;:::i;6550:192::-;;;;;;;;;;-1:-1:-1;6550:192:0;;;;;:::i;:::-;;:::i;54242:38::-;;;;;;;;;;;;;;;;40740:224;40842:4;-1:-1:-1;;;;;;40866:50:0;;-1:-1:-1;;;40866:50:0;;:90;;;40920:36;40944:11;40920:23;:36::i;:::-;40859:97;40740:224;-1:-1:-1;;40740:224:0:o;27649:100::-;27703:13;27736:5;27729:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27649:100;:::o;59224:126::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;;;;;;;;;59281:19:::1;:26:::0;;-1:-1:-1;;;;59281:26:0::1;-1:-1:-1::0;;;59281:26:0::1;::::0;;59323:19:::1;::::0;::::1;::::0;59281:26;;59323:19:::1;59224:126::o:0;29208:221::-;29284:7;32691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32691:16:0;29304:73;;;;-1:-1:-1;;;29304:73:0;;15567:2:1;29304:73:0;;;15549:21:1;15606:2;15586:18;;;15579:30;15645:34;15625:18;;;15618:62;-1:-1:-1;;;15696:18:1;;;15689:42;15748:19;;29304:73:0;15539:234:1;29304:73:0;-1:-1:-1;29397:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29397:24:0;;29208:221::o;28731:411::-;28812:13;28828:23;28843:7;28828:14;:23::i;:::-;28812:39;;28876:5;-1:-1:-1;;;;;28870:11:0;:2;-1:-1:-1;;;;;28870:11:0;;;28862:57;;;;-1:-1:-1;;;28862:57:0;;17167:2:1;28862:57:0;;;17149:21:1;17206:2;17186:18;;;17179:30;17245:34;17225:18;;;17218:62;-1:-1:-1;;;17296:18:1;;;17289:31;17337:19;;28862:57:0;17139:223:1;28862:57:0;4522:10;-1:-1:-1;;;;;28954:21:0;;;;:62;;-1:-1:-1;28979:37:0;28996:5;4522:10;29867:164;:::i;28979:37::-;28932:168;;;;-1:-1:-1;;;28932:168:0;;13543:2:1;28932:168:0;;;13525:21:1;13582:2;13562:18;;;13555:30;13621:34;13601:18;;;13594:62;13692:26;13672:18;;;13665:54;13736:19;;28932:168:0;13515:246:1;28932:168:0;29113:21;29122:2;29126:7;29113:8;:21::i;:::-;28731:411;;;:::o;54884:351::-;54952:16;54981:18;55002:17;55012:6;55002:9;:17::i;:::-;54981:38;;55030:25;55072:10;55058:25;;;;;;-1:-1:-1;;;55058:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55058:25:0;;55030:53;;55099:9;55094:108;55114:10;55110:1;:14;55094:108;;;55160:30;55180:6;55188:1;55160:19;:30::i;:::-;55146:8;55155:1;55146:11;;;;;;-1:-1:-1;;;55146:11:0;;;;;;;;;;;;;;;;;;:44;55126:3;;;;:::i;:::-;;;;55094:108;;;-1:-1:-1;55219:8:0;54884:351;-1:-1:-1;;;54884:351:0:o;30098:339::-;30293:41;4522:10;30326:7;30293:18;:41::i;:::-;30285:103;;;;-1:-1:-1;;;30285:103:0;;;;;;;:::i;:::-;30401:28;30411:4;30417:2;30421:7;30401:9;:28::i;54287:34::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54287:34:0;;-1:-1:-1;54287:34:0;:::o;41048:256::-;41145:7;41181:23;41198:5;41181:16;:23::i;:::-;41173:5;:31;41165:87;;;;-1:-1:-1;;;41165:87:0;;10002:2:1;41165:87:0;;;9984:21:1;10041:2;10021:18;;;10014:30;10080:34;10060:18;;;10053:62;-1:-1:-1;;;10131:18:1;;;10124:41;10182:19;;41165:87:0;9974:233:1;41165:87:0;-1:-1:-1;;;;;;41270:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41048:256::o;59623:143::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;59721:37:::1;::::0;59689:21:::1;::::0;59729:10:::1;::::0;59721:37;::::1;;;::::0;59689:21;;59671:15:::1;59721:37:::0;59671:15;59721:37;59689:21;59729:10;59721:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5941:1;59623:143::o:0;55598:389::-;55672:13;;-1:-1:-1;;;55672:13:0;;;;55664:66;;;;-1:-1:-1;;;55664:66:0;;19991:2:1;55664:66:0;;;19973:21:1;20030:2;20010:18;;;20003:30;20069:34;20049:18;;;20042:62;-1:-1:-1;;;20120:18:1;;;20113:38;20168:19;;55664:66:0;19963:230:1;55664:66:0;55771:9;55761:6;55749:9;;:18;;;;:::i;:::-;:31;;55741:107;;;;-1:-1:-1;;;55741:107:0;;9570:2:1;55741:107:0;;;9552:21:1;9609:2;9589:18;;;9582:30;9648:34;9628:18;;;9621:62;9719:33;9699:18;;;9692:61;9770:19;;55741:107:0;9542:253:1;55741:107:0;55877:18;;55867:6;:28;;55859:87;;;;-1:-1:-1;;;55859:87:0;;17972:2:1;55859:87:0;;;17954:21:1;18011:2;17991:18;;;17984:30;18050:34;18030:18;;;18023:62;-1:-1:-1;;;18101:18:1;;;18094:44;18155:19;;55859:87:0;17944:236:1;55859:87:0;55957:22;55967:6;55975:3;55957:9;:22::i;30508:185::-;30646:39;30663:4;30669:2;30673:7;30646:39;;;;;;;;;;;;:16;:39::i;41570:233::-;41645:7;41681:30;41468:10;:17;;41380:113;41681:30;41673:5;:38;41665:95;;;;-1:-1:-1;;;41665:95:0;;19578:2:1;41665:95:0;;;19560:21:1;19617:2;19597:18;;;19590:30;19656:34;19636:18;;;19629:62;-1:-1:-1;;;19707:18:1;;;19700:42;19759:19;;41665:95:0;19550:234:1;41665:95:0;41778:10;41789:5;41778:17;;;;;;-1:-1:-1;;;41778:17:0;;;;;;;;;;;;;;;;;41771:24;;41570:233;;;:::o;58072:109::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;58123:13:::1;:21:::0;;-1:-1:-1;;;;58123:21:0::1;::::0;;58160:13:::1;::::0;::::1;::::0;58139:5:::1;::::0;58160:13:::1;58072:109::o:0;58324:::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;58398:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;55995:1158::-:0;56070:19;;-1:-1:-1;;;56070:19:0;;;;56062:78;;;;-1:-1:-1;;;56062:78:0;;18387:2:1;56062:78:0;;;18369:21:1;18426:2;18406:18;;;18399:30;18465:34;18445:18;;;18438:62;-1:-1:-1;;;18516:18:1;;;18509:44;18570:19;;56062:78:0;18359:236:1;56062:78:0;56296:1;56268:24;;:29;;56260:90;;;;-1:-1:-1;;;56260:90:0;;13968:2:1;56260:90:0;;;13950:21:1;14007:2;13987:18;;;13980:30;14046:34;14026:18;;;14019:62;-1:-1:-1;;;14097:18:1;;;14090:46;14153:19;;56260:90:0;13940:238:1;56260:90:0;56439:44;56465:17;56439:25;:44::i;:::-;56431:105;;;;-1:-1:-1;;;56431:105:0;;12713:2:1;56431:105:0;;;12695:21:1;12752:2;12732:18;;;12725:30;12791:34;12771:18;;;12764:62;-1:-1:-1;;;12842:18:1;;;12835:46;12898:19;;56431:105:0;12685:238:1;56431:105:0;56671:28;;56642:26;;-1:-1:-1;;;56642:26:0;;56657:10;56642:26;;;7336:51:1;56642:4:0;;:14;;7309:18:1;;56642:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;56633:114;;;;-1:-1:-1;;;56633:114:0;;20400:2:1;56633:114:0;;;20382:21:1;20439:2;20419:18;;;20412:30;20478:34;20458:18;;;20451:62;-1:-1:-1;;;20529:18:1;;;20522:40;20579:19;;56633:114:0;20372:232:1;56633:114:0;56910:36;;-1:-1:-1;;;56910:36:0;;56935:10;56910:36;;;7336:51:1;56863:17:0;;56830:22;;-1:-1:-1;;;;;56910:24:0;;;;;7309:18:1;;56910:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56892:54;;56976:1;56965:7;:12;;56957:77;;;;-1:-1:-1;;;56957:77:0;;9149:2:1;56957:77:0;;;9131:21:1;9188:2;9168:18;;;9161:30;9227:34;9207:18;;;9200:62;-1:-1:-1;;;9278:18:1;;;9271:50;9338:19;;56957:77:0;9121:242:1;56957:77:0;57055:24;57065:1;57068:10;57055:9;:24::i;:::-;57144:1;57117:24;;:28;;;;:::i;:::-;57090:24;:55;-1:-1:-1;;;55995:1158:0:o;57161:332::-;57228:4;;;57277:183;57298:17;:24;57294:28;;57277:183;;;57353:17;57371:1;57353:20;;;;;;-1:-1:-1;;;57353:20:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57348:25:0;;;57353:20;;57348:25;57344:105;;;57405:4;57394:15;;57428:5;;57344:105;57324:3;;;;:::i;:::-;;;;57277:183;;;-1:-1:-1;57477:8:0;57161:332;-1:-1:-1;;57161:332:0:o;27343:239::-;27415:7;27451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27451:16:0;27486:19;27478:73;;;;-1:-1:-1;;;27478:73:0;;14796:2:1;27478:73:0;;;14778:21:1;14835:2;14815:18;;;14808:30;14874:34;14854:18;;;14847:62;-1:-1:-1;;;14925:18:1;;;14918:39;14974:19;;27478:73:0;14768:231:1;57501:563:0;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;57633:6:::1;:13;57612:10;:17;:34;57604:81;;;::::0;-1:-1:-1;;;57604:81:0;;17569:2:1;57604:81:0::1;::::0;::::1;17551:21:1::0;17608:2;17588:18;;;17581:30;17647:34;17627:18;;;17620:62;-1:-1:-1;;;17698:18:1;;;17691:32;17740:19;;57604:81:0::1;17541:224:1::0;57604:81:0::1;57696:19;57735:9:::0;57730:108:::1;57754:6;:13;57750:1;:17;57730:108;;;57817:6;57824:1;57817:9;;;;;;-1:-1:-1::0;;;57817:9:0::1;;;;;;;;;;;;;;;57803:11;:23;;;;:::i;:::-;57789:37:::0;-1:-1:-1;57769:3:0;::::1;::::0;::::1;:::i;:::-;;;;57730:108;;;;54435:4;57856:30;57874:11;57856:13;41468:10:::0;:17;;41380:113;57856:13:::1;:17:::0;::::1;:30::i;:::-;:44;;57848:86;;;::::0;-1:-1:-1;;;57848:86:0;;18802:2:1;57848:86:0::1;::::0;::::1;18784:21:1::0;18841:2;18821:18;;;18814:30;18880:31;18860:18;;;18853:59;18929:18;;57848:86:0::1;18774:179:1::0;57848:86:0::1;57952:9;57947:110;57971:10;:17;57967:1;:21;57947:110;;;58010:35;58020:6;58027:1;58020:9;;;;;;-1:-1:-1::0;;;58020:9:0::1;;;;;;;;;;;;;;;58031:10;58042:1;58031:13;;;;;;-1:-1:-1::0;;;58031:13:0::1;;;;;;;;;;;;;;;58010:9;:35::i;:::-;57990:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57947:110;;;;5941:1;57501:563:::0;;:::o;27073:208::-;27145:7;-1:-1:-1;;;;;27173:19:0;;27165:74;;;;-1:-1:-1;;;27165:74:0;;14385:2:1;27165:74:0;;;14367:21:1;14424:2;14404:18;;;14397:30;14463:34;14443:18;;;14436:62;-1:-1:-1;;;14514:18:1;;;14507:40;14564:19;;27165:74:0;14357:232:1;27165:74:0;-1:-1:-1;;;;;;27257:16:0;;;;;:9;:16;;;;;;;27073:208::o;6301:94::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;6366:21:::1;6384:1;6366:9;:21::i;:::-;6301:94::o:0;58441:112::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;58518:18:::1;:27:::0;58441:112::o;58697:88::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;58760:9:::1;:17:::0;58697:88::o;27818:104::-;27874:13;27907:7;27900:14;;;;;:::i;58931:165::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;59022:24:::1;59029:17;;59022:24;:::i;:::-;59057:31:::0;;::::1;::::0;:17:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;29501:295::-:0;-1:-1:-1;;;;;29604:24:0;;4522:10;29604:24;;29596:62;;;;-1:-1:-1;;;29596:62:0;;12359:2:1;29596:62:0;;;12341:21:1;12398:2;12378:18;;;12371:30;12437:27;12417:18;;;12410:55;12482:18;;29596:62:0;12331:175:1;29596:62:0;4522:10;29671:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29671:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29671:53:0;;;;;;;;;;29740:48;;8671:41:1;;;29671:42:0;;4522:10;29740:48;;8644:18:1;29740:48:0;;;;;;;29501:295;;:::o;58793:130::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;58879:24:::1;:36:::0;58793:130::o;58561:128::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;58644:28:::1;:37:::0;58561:128::o;59104:108::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;59155:13:::1;:20:::0;;-1:-1:-1;;;;59155:20:0::1;-1:-1:-1::0;;;59155:20:0::1;::::0;;59191:13:::1;::::0;::::1;::::0;59155:20;;59191:13:::1;59104:108::o:0;30764:328::-;30939:41;4522:10;30972:7;30939:18;:41::i;:::-;30931:103;;;;-1:-1:-1;;;30931:103:0;;;;;;;:::i;:::-;31045:39;31059:4;31065:2;31069:7;31078:5;31045:13;:39::i;59358:257::-;32667:4;32691:16;;;:7;:16;;;;;;59431:13;;-1:-1:-1;;;;;32691:16:0;59457:76;;;;-1:-1:-1;;;59457:76:0;;16751:2:1;59457:76:0;;;16733:21:1;16790:2;16770:18;;;16763:30;16829:34;16809:18;;;16802:62;-1:-1:-1;;;16880:18:1;;;16873:45;16935:19;;59457:76:0;16723:237:1;59457:76:0;59575:10;:8;:10::i;:::-;59587:18;:7;:16;:18::i;:::-;59558:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59544:63;;59358:257;;;:::o;58189:127::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;58246:19:::1;:27:::0;;-1:-1:-1;;;;58246:27:0::1;::::0;;58289:19:::1;::::0;::::1;::::0;58268:5:::1;::::0;58289:19:::1;58189:127::o:0;6550:192::-;5723:6;;-1:-1:-1;;;;;5723:6:0;4522:10;5870:23;5862:68;;;;-1:-1:-1;;;5862:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6639:22:0;::::1;6631:73;;;::::0;-1:-1:-1;;;6631:73:0;;10833:2:1;6631:73:0::1;::::0;::::1;10815:21:1::0;10872:2;10852:18;;;10845:30;10911:34;10891:18;;;10884:62;-1:-1:-1;;;10962:18:1;;;10955:36;11008:19;;6631:73:0::1;10805:228:1::0;6631:73:0::1;6715:19;6725:8;6715:9;:19::i;:::-;6550:192:::0;:::o;26704:305::-;26806:4;-1:-1:-1;;;;;;26843:40:0;;-1:-1:-1;;;26843:40:0;;:105;;-1:-1:-1;;;;;;;26900:48:0;;-1:-1:-1;;;26900:48:0;26843:105;:158;;;-1:-1:-1;;;;;;;;;;25321:40:0;;;26965:36;25212:157;36584:174;36659:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36659:29:0;-1:-1:-1;;;;;36659:29:0;;;;;;;;:24;;36713:23;36659:24;36713:14;:23::i;:::-;-1:-1:-1;;;;;36704:46:0;;;;;;;;;;;36584:174;;:::o;32896:348::-;32989:4;32691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32691:16:0;33006:73;;;;-1:-1:-1;;;33006:73:0;;13130:2:1;33006:73:0;;;13112:21:1;13169:2;13149:18;;;13142:30;13208:34;13188:18;;;13181:62;-1:-1:-1;;;13259:18:1;;;13252:42;13311:19;;33006:73:0;13102:234:1;33006:73:0;33090:13;33106:23;33121:7;33106:14;:23::i;:::-;33090:39;;33159:5;-1:-1:-1;;;;;33148:16:0;:7;-1:-1:-1;;;;;33148:16:0;;:51;;;;33192:7;-1:-1:-1;;;;;33168:31:0;:20;33180:7;33168:11;:20::i;:::-;-1:-1:-1;;;;;33168:31:0;;33148:51;:87;;;-1:-1:-1;;;;;;29988:25:0;;;29964:4;29988:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33203:32;33140:96;32896:348;-1:-1:-1;;;;32896:348:0:o;35888:578::-;36047:4;-1:-1:-1;;;;;36020:31:0;:23;36035:7;36020:14;:23::i;:::-;-1:-1:-1;;;;;36020:31:0;;36012:85;;;;-1:-1:-1;;;36012:85:0;;16341:2:1;36012:85:0;;;16323:21:1;16380:2;16360:18;;;16353:30;16419:34;16399:18;;;16392:62;-1:-1:-1;;;16470:18:1;;;16463:39;16519:19;;36012:85:0;16313:231:1;36012:85:0;-1:-1:-1;;;;;36116:16:0;;36108:65;;;;-1:-1:-1;;;36108:65:0;;11954:2:1;36108:65:0;;;11936:21:1;11993:2;11973:18;;;11966:30;12032:34;12012:18;;;12005:62;-1:-1:-1;;;12083:18:1;;;12076:34;12127:19;;36108:65:0;11926:226:1;36108:65:0;36186:39;36207:4;36213:2;36217:7;36186:20;:39::i;:::-;36290:29;36307:1;36311:7;36290:8;:29::i;:::-;-1:-1:-1;;;;;36332:15:0;;;;;;:9;:15;;;;;:20;;36351:1;;36332:15;:20;;36351:1;;36332:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36363:13:0;;;;;;:9;:13;;;;;:18;;36380:1;;36363:13;:18;;36380:1;;36363:18;:::i;:::-;;;;-1:-1:-1;;36392:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36392:21:0;-1:-1:-1;;;;;36392:21:0;;;;;;;;;36431:27;;36392:16;;36431:27;;;;;;;35888:578;;;:::o;55243:347::-;54435:4;55323:29;55341:10;55323:13;41468:10;:17;;41380:113;55323:29;:43;;55315:84;;;;-1:-1:-1;;;55315:84:0;;11597:2:1;55315:84:0;;;11579:21:1;11636:2;11616:18;;;11609:30;11675;11655:18;;;11648:58;11723:18;;55315:84:0;11569:178:1;55315:84:0;55410:14;55427:13;41468:10;:17;;41380:113;55427:13;55410:30;;55456:6;55451:90;55472:10;55468:1;:14;55451:90;;;55504:25;55514:2;55518:10;55527:1;55518:6;:10;:::i;:::-;55504:9;:25::i;:::-;55484:3;;;;:::i;:::-;;;;55451:90;;;;55556:26;55568:13;41468:10;:17;;41380:113;55568:13;55556:26;;20755:25:1;;;20743:2;20728:18;55556:26:0;;;;;;;55243:347;;;:::o;49676:98::-;49734:7;49761:5;49765:1;49761;:5;:::i;:::-;49754:12;49676:98;-1:-1:-1;;;49676:98:0:o;6750:173::-;6825:6;;;-1:-1:-1;;;;;6842:17:0;;;-1:-1:-1;;;;;;6842:17:0;;;;;;;6875:40;;6825:6;;;6842:17;6825:6;;6875:40;;6806:16;;6875:40;6750:173;;:::o;31974:315::-;32131:28;32141:4;32147:2;32151:7;32131:9;:28::i;:::-;32178:48;32201:4;32207:2;32211:7;32220:5;32178:22;:48::i;:::-;32170:111;;;;-1:-1:-1;;;32170:111:0;;;;;;;:::i;54759:117::-;54819:13;54852:16;54845:23;;;;;:::i;22659:723::-;22715:13;22936:10;22932:53;;-1:-1:-1;;22963:10:0;;;;;;;;;;;;-1:-1:-1;;;22963:10:0;;;;;22659:723::o;22932:53::-;23010:5;22995:12;23051:78;23058:9;;23051:78;;23084:8;;;;:::i;:::-;;-1:-1:-1;23107:10:0;;-1:-1:-1;23115:2:0;23107:10;;:::i;:::-;;;23051:78;;;23139:19;23171:6;23161:17;;;;;;-1:-1:-1;;;23161:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23161:17:0;;23139:39;;23189:154;23196:10;;23189:154;;23223:11;23233:1;23223:11;;:::i;:::-;;-1:-1:-1;23292:10:0;23300:2;23292:5;:10;:::i;:::-;23279:24;;:2;:24;:::i;:::-;23266:39;;23249:6;23256;23249:14;;;;;;-1:-1:-1;;;23249:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;23249:56:0;;;;;;;;-1:-1:-1;23320:11:0;23329:2;23320:11;;:::i;:::-;;;23189:154;;42416:589;-1:-1:-1;;;;;42622:18:0;;42618:187;;42657:40;42689:7;43832:10;:17;;43805:24;;;;:15;:24;;;;;:44;;;43860:24;;;;;;;;;;;;43728:164;42657:40;42618:187;;;42727:2;-1:-1:-1;;;;;42719:10:0;:4;-1:-1:-1;;;;;42719:10:0;;42715:90;;42746:47;42779:4;42785:7;42746:32;:47::i;:::-;-1:-1:-1;;;;;42819:16:0;;42815:183;;42852:45;42889:7;42852:36;:45::i;42815:183::-;42925:4;-1:-1:-1;;;;;42919:10:0;:2;-1:-1:-1;;;;;42919:10:0;;42915:83;;42946:40;42974:2;42978:7;42946:27;:40::i;33586:110::-;33662:26;33672:2;33676:7;33662:26;;;;;;;;;;;;:9;:26::i;37323:799::-;37478:4;-1:-1:-1;;;;;37499:13:0;;15344:20;15392:8;37495:620;;37535:72;;-1:-1:-1;;;37535:72:0;;-1:-1:-1;;;;;37535:36:0;;;;;:72;;4522:10;;37586:4;;37592:7;;37601:5;;37535:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37535:72:0;;;;;;;;-1:-1:-1;;37535:72:0;;;;;;;;;;;;:::i;:::-;;;37531:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37777:13:0;;37773:272;;37820:60;;-1:-1:-1;;;37820:60:0;;;;;;;:::i;37773:272::-;37995:6;37989:13;37980:6;37976:2;37972:15;37965:38;37531:529;-1:-1:-1;;;;;;37658:51:0;-1:-1:-1;;;37658:51:0;;-1:-1:-1;37651:58:0;;37495:620;-1:-1:-1;38099:4:0;37323:799;;;;;;:::o;44519:988::-;44785:22;44835:1;44810:22;44827:4;44810:16;:22::i;:::-;:26;;;;:::i;:::-;44847:18;44868:26;;;:17;:26;;;;;;44785:51;;-1:-1:-1;45001:28:0;;;44997:328;;-1:-1:-1;;;;;45068:18:0;;45046:19;45068:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45119:30;;;;;;:44;;;45236:30;;:17;:30;;;;;:43;;;44997:328;-1:-1:-1;45421:26:0;;;;:17;:26;;;;;;;;45414:33;;;-1:-1:-1;;;;;45465:18:0;;;;;:12;:18;;;;;:34;;;;;;;45458:41;44519:988::o;45802:1079::-;46080:10;:17;46055:22;;46080:21;;46100:1;;46080:21;:::i;:::-;46112:18;46133:24;;;:15;:24;;;;;;46506:10;:26;;46055:46;;-1:-1:-1;46133:24:0;;46055:46;;46506:26;;;;-1:-1:-1;;;46506:26:0;;;;;;;;;;;;;;;;;46484:48;;46570:11;46545:10;46556;46545:22;;;;;;-1:-1:-1;;;46545:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46650:28;;;:15;:28;;;;;;;:41;;;46822:24;;;;;46815:31;46857:10;:16;;;;;-1:-1:-1;;;46857:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45802:1079;;;;:::o;43306:221::-;43391:14;43408:20;43425:2;43408:16;:20::i;:::-;-1:-1:-1;;;;;43439:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43484:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43306:221:0:o;33923:321::-;34053:18;34059:2;34063:7;34053:5;:18::i;:::-;34104:54;34135:1;34139:2;34143:7;34152:5;34104:22;:54::i;:::-;34082:154;;;;-1:-1:-1;;;34082:154:0;;;;;;;:::i;34580:382::-;-1:-1:-1;;;;;34660:16:0;;34652:61;;;;-1:-1:-1;;;34652:61:0;;15206:2:1;34652:61:0;;;15188:21:1;;;15225:18;;;15218:30;15284:34;15264:18;;;15257:62;15336:18;;34652:61:0;15178:182:1;34652:61:0;32667:4;32691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32691:16:0;:30;34724:58;;;;-1:-1:-1;;;34724:58:0;;11240:2:1;34724:58:0;;;11222:21:1;11279:2;11259:18;;;11252:30;11318;11298:18;;;11291:58;11366:18;;34724:58:0;11212:178:1;34724:58:0;34795:45;34824:1;34828:2;34832:7;34795:20;:45::i;:::-;-1:-1:-1;;;;;34853:13:0;;;;;;:9;:13;;;;;:18;;34870:1;;34853:13;:18;;34870:1;;34853:18;:::i;:::-;;;;-1:-1:-1;;34882:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34882:21:0;-1:-1:-1;;;;;34882:21:0;;;;;;;;34921:33;;34882:16;;;34921:33;;34882:16;;34921:33;34580:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:699::-;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;732:5;725;718:20;677:2;772:6;759:20;798:4;822:60;838:43;878:2;838:43;:::i;:::-;822:60;:::i;:::-;904:3;928:2;923:3;916:15;956:2;951:3;947:12;940:19;;991:2;983:6;979:15;1043:3;1038:2;1032;1029:1;1025:10;1017:6;1013:23;1009:32;1006:41;1003:2;;;1064:5;1057;1050:20;1003:2;1090:5;1104:169;1118:2;1115:1;1112:9;1104:169;;;1175:23;1194:3;1175:23;:::i;:::-;1163:36;;1219:12;;;;1251;;;;1136:1;1129:9;1104:169;;;-1:-1:-1;1291:5:1;;667:635;-1:-1:-1;;;;;;;667:635:1:o;1307:196::-;1366:6;1419:2;1407:9;1398:7;1394:23;1390:32;1387:2;;;1440:6;1432;1425:22;1387:2;1468:29;1487:9;1468:29;:::i;1508:270::-;1576:6;1584;1637:2;1625:9;1616:7;1612:23;1608:32;1605:2;;;1658:6;1650;1643:22;1605:2;1686:29;1705:9;1686:29;:::i;:::-;1676:39;;1734:38;1768:2;1757:9;1753:18;1734:38;:::i;:::-;1724:48;;1595:183;;;;;:::o;1783:338::-;1860:6;1868;1876;1929:2;1917:9;1908:7;1904:23;1900:32;1897:2;;;1950:6;1942;1935:22;1897:2;1978:29;1997:9;1978:29;:::i;:::-;1968:39;;2026:38;2060:2;2049:9;2045:18;2026:38;:::i;:::-;2016:48;;2111:2;2100:9;2096:18;2083:32;2073:42;;1887:234;;;;;:::o;2126:696::-;2221:6;2229;2237;2245;2298:3;2286:9;2277:7;2273:23;2269:33;2266:2;;;2320:6;2312;2305:22;2266:2;2348:29;2367:9;2348:29;:::i;:::-;2338:39;;2396:38;2430:2;2419:9;2415:18;2396:38;:::i;:::-;2386:48;;2481:2;2470:9;2466:18;2453:32;2443:42;;2536:2;2525:9;2521:18;2508:32;2563:18;2555:6;2552:30;2549:2;;;2600:6;2592;2585:22;2549:2;2628:22;;2681:4;2673:13;;2669:27;-1:-1:-1;2659:2:1;;2715:6;2707;2700:22;2659:2;2743:73;2808:7;2803:2;2790:16;2785:2;2781;2777:11;2743:73;:::i;:::-;2733:83;;;2256:566;;;;;;;:::o;2827:367::-;2892:6;2900;2953:2;2941:9;2932:7;2928:23;2924:32;2921:2;;;2974:6;2966;2959:22;2921:2;3002:29;3021:9;3002:29;:::i;:::-;2992:39;;3081:2;3070:9;3066:18;3053:32;3128:5;3121:13;3114:21;3107:5;3104:32;3094:2;;3155:6;3147;3140:22;3094:2;3183:5;3173:15;;;2911:283;;;;;:::o;3199:264::-;3267:6;3275;3328:2;3316:9;3307:7;3303:23;3299:32;3296:2;;;3349:6;3341;3334:22;3296:2;3377:29;3396:9;3377:29;:::i;:::-;3367:39;3453:2;3438:18;;;;3425:32;;-1:-1:-1;;;3286:177:1:o;3468:368::-;3552:6;3605:2;3593:9;3584:7;3580:23;3576:32;3573:2;;;3626:6;3618;3611:22;3573:2;3671:9;3658:23;3704:18;3696:6;3693:30;3690:2;;;3741:6;3733;3726:22;3690:2;3769:61;3822:7;3813:6;3802:9;3798:22;3769:61;:::i;3841:1204::-;3959:6;3967;4020:2;4008:9;3999:7;3995:23;3991:32;3988:2;;;4041:6;4033;4026:22;3988:2;4086:9;4073:23;4115:18;4156:2;4148:6;4145:14;4142:2;;;4177:6;4169;4162:22;4142:2;4205:61;4258:7;4249:6;4238:9;4234:22;4205:61;:::i;:::-;4195:71;;4285:2;4275:12;;4340:2;4329:9;4325:18;4312:32;4369:2;4359:8;4356:16;4353:2;;;4390:6;4382;4375:22;4353:2;4418:24;;;-1:-1:-1;4473:4:1;4465:13;;4461:27;-1:-1:-1;4451:2:1;;4507:6;4499;4492:22;4451:2;4548;4535:16;4571:60;4587:43;4627:2;4587:43;:::i;4571:60::-;4653:3;4677:2;4672:3;4665:15;4705:2;4700:3;4696:12;4689:19;;4736:2;4732;4728:11;4784:7;4779:2;4773;4770:1;4766:10;4762:2;4758:19;4754:28;4751:41;4748:2;;;4810:6;4802;4795:22;4748:2;4837:6;4828:15;;4852:163;4866:2;4863:1;4860:9;4852:163;;;4923:17;;4911:30;;4884:1;4877:9;;;;;4961:12;;;;4993;;4852:163;;;4856:3;5034:5;5024:15;;;;;;;3978:1067;;;;;:::o;5050:255::-;5108:6;5161:2;5149:9;5140:7;5136:23;5132:32;5129:2;;;5182:6;5174;5167:22;5129:2;5226:9;5213:23;5245:30;5269:5;5245:30;:::i;5310:259::-;5379:6;5432:2;5420:9;5411:7;5407:23;5403:32;5400:2;;;5453:6;5445;5438:22;5400:2;5490:9;5484:16;5509:30;5533:5;5509:30;:::i;5574:480::-;5643:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:2;;;5717:6;5709;5702:22;5664:2;5762:9;5749:23;5795:18;5787:6;5784:30;5781:2;;;5832:6;5824;5817:22;5781:2;5860:22;;5913:4;5905:13;;5901:27;-1:-1:-1;5891:2:1;;5947:6;5939;5932:22;5891:2;5975:73;6040:7;6035:2;6022:16;6017:2;6013;6009:11;5975:73;:::i;6059:190::-;6118:6;6171:2;6159:9;6150:7;6146:23;6142:32;6139:2;;;6192:6;6184;6177:22;6139:2;-1:-1:-1;6220:23:1;;6129:120;-1:-1:-1;6129:120:1:o;6254:194::-;6324:6;6377:2;6365:9;6356:7;6352:23;6348:32;6345:2;;;6398:6;6390;6383:22;6345:2;-1:-1:-1;6426:16:1;;6335:113;-1:-1:-1;6335:113:1:o;6453:257::-;6494:3;6532:5;6526:12;6559:6;6554:3;6547:19;6575:63;6631:6;6624:4;6619:3;6615:14;6608:4;6601:5;6597:16;6575:63;:::i;:::-;6692:2;6671:15;-1:-1:-1;;6667:29:1;6658:39;;;;6699:4;6654:50;;6502:208;-1:-1:-1;;6502:208:1:o;6715:470::-;6894:3;6932:6;6926:13;6948:53;6994:6;6989:3;6982:4;6974:6;6970:17;6948:53;:::i;:::-;7064:13;;7023:16;;;;7086:57;7064:13;7023:16;7120:4;7108:17;;7086:57;:::i;:::-;7159:20;;6902:283;-1:-1:-1;;;;6902:283:1:o;7398:488::-;-1:-1:-1;;;;;7667:15:1;;;7649:34;;7719:15;;7714:2;7699:18;;7692:43;7766:2;7751:18;;7744:34;;;7814:3;7809:2;7794:18;;7787:31;;;7592:4;;7835:45;;7860:19;;7852:6;7835:45;:::i;:::-;7827:53;7601:285;-1:-1:-1;;;;;;7601:285:1:o;7891:635::-;8062:2;8114:21;;;8184:13;;8087:18;;;8206:22;;;8033:4;;8062:2;8285:15;;;;8259:2;8244:18;;;8033:4;8331:169;8345:6;8342:1;8339:13;8331:169;;;8406:13;;8394:26;;8475:15;;;;8440:12;;;;8367:1;8360:9;8331:169;;;-1:-1:-1;8517:3:1;;8042:484;-1:-1:-1;;;;;;8042:484:1:o;8723:219::-;8872:2;8861:9;8854:21;8835:4;8892:44;8932:2;8921:9;8917:18;8909:6;8892:44;:::i;10212:414::-;10414:2;10396:21;;;10453:2;10433:18;;;10426:30;10492:34;10487:2;10472:18;;10465:62;-1:-1:-1;;;10558:2:1;10543:18;;10536:48;10616:3;10601:19;;10386:240::o;15778:356::-;15980:2;15962:21;;;15999:18;;;15992:30;16058:34;16053:2;16038:18;;16031:62;16125:2;16110:18;;15952:182::o;18958:413::-;19160:2;19142:21;;;19199:2;19179:18;;;19172:30;19238:34;19233:2;19218:18;;19211:62;-1:-1:-1;;;19304:2:1;19289:18;;19282:47;19361:3;19346:19;;19132:239::o;20791:275::-;20862:2;20856:9;20927:2;20908:13;;-1:-1:-1;;20904:27:1;20892:40;;20962:18;20947:34;;20983:22;;;20944:62;20941:2;;;21009:18;;:::i;:::-;21045:2;21038:22;20836:230;;-1:-1:-1;20836:230:1:o;21071:183::-;21131:4;21164:18;21156:6;21153:30;21150:2;;;21186:18;;:::i;:::-;-1:-1:-1;21231:1:1;21227:14;21243:4;21223:25;;21140:114::o;21259:128::-;21299:3;21330:1;21326:6;21323:1;21320:13;21317:2;;;21336:18;;:::i;:::-;-1:-1:-1;21372:9:1;;21307:80::o;21392:120::-;21432:1;21458;21448:2;;21463:18;;:::i;:::-;-1:-1:-1;21497:9:1;;21438:74::o;21517:168::-;21557:7;21623:1;21619;21615:6;21611:14;21608:1;21605:21;21600:1;21593:9;21586:17;21582:45;21579:2;;;21630:18;;:::i;:::-;-1:-1:-1;21670:9:1;;21569:116::o;21690:125::-;21730:4;21758:1;21755;21752:8;21749:2;;;21763:18;;:::i;:::-;-1:-1:-1;21800:9:1;;21739:76::o;21820:258::-;21892:1;21902:113;21916:6;21913:1;21910:13;21902:113;;;21992:11;;;21986:18;21973:11;;;21966:39;21938:2;21931:10;21902:113;;;22033:6;22030:1;22027:13;22024:2;;;-1:-1:-1;;22068:1:1;22050:16;;22043:27;21873:205::o;22083:380::-;22162:1;22158:12;;;;22205;;;22226:2;;22280:4;22272:6;22268:17;22258:27;;22226:2;22333;22325:6;22322:14;22302:18;22299:38;22296:2;;;22379:10;22374:3;22370:20;22367:1;22360:31;22414:4;22411:1;22404:15;22442:4;22439:1;22432:15;22296:2;;22138:325;;;:::o;22468:135::-;22507:3;-1:-1:-1;;22528:17:1;;22525:2;;;22548:18;;:::i;:::-;-1:-1:-1;22595:1:1;22584:13;;22515:88::o;22608:112::-;22640:1;22666;22656:2;;22671:18;;:::i;:::-;-1:-1:-1;22705:9:1;;22646:74::o;22725:127::-;22786:10;22781:3;22777:20;22774:1;22767:31;22817:4;22814:1;22807:15;22841:4;22838:1;22831:15;22857:127;22918:10;22913:3;22909:20;22906:1;22899:31;22949:4;22946:1;22939:15;22973:4;22970:1;22963:15;22989:127;23050:10;23045:3;23041:20;23038:1;23031:31;23081:4;23078:1;23071:15;23105:4;23102:1;23095:15;23121:131;-1:-1:-1;;;;;;23195:32:1;;23185:43;;23175:2;;23242:1;23239;23232:12

Swarm Source

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