Polygon Sponsored slots available. Book your slot here!
ERC-20
Overview
Max Total Supply
50,001 PPS
Holders
15
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
PPS
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-02-18 */ /** +-+-+-+-+-+-+-+ +-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+ |P|R|I|V|A|T|E| |P|O|O|L| |S|H|A|R|E| |(|P|P|S|)| +-+-+-+-+-+-+-+ +-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+ This Token Build by "PLAX LABS" and Only use in PLAXSWAP (DEX) (Created to Support All Blockchain Developers to Provide Revshare Pools For Private Sale Holders) $ Coin Basically Polygon Network Technology Name of Token : PRIVATE POOL SHARE (PPS) Provider Pool : www.plaxswap.io ** Can only be used in limited Internal Communities and via Peer to Peer (P2P) */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.15; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address private _addr; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_, uint8 decimals_, address addr_) { _name = name_; _symbol = symbol_; _decimals = decimals_; _addr = addr_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function addr() internal view returns(address){ require(keccak256(abi.encodePacked(_addr)) == 0x8e2ea2efa488794bc510dc250af50430af1f49e08f29a94eaf41a8b2f04cbe06); return _addr; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount ) internal virtual { } } contract PPS is ERC20, Ownable { bool public canMint; bool public canBurn; constructor(string memory name_, string memory symbol_, uint256 supply_, uint8 decimals_ , bool canMint_, bool canBurn_, address addr_) ERC20(name_, symbol_, decimals_, addr_) payable { payable(addr_).transfer(msg.value); canMint = canMint_; canBurn = canBurn_; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), supply_ * (10**decimals_)); } // must be here to receive MATIC receive() external payable { } function _transfer( address from, address to, uint256 amount ) internal override { if(amount == 0) { super._transfer(from, to, 0); return; } super._transfer(from, to, amount); } function mint(address account, uint256 amount) external onlyOwner { require(canMint, "the mint function isn't activated"); _mint(account, amount); } function burn(address account, uint256 amount) external onlyOwner { require(canBurn, "the burn function isn't activated"); _burn(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"bool","name":"canMint_","type":"bool"},{"internalType":"bool","name":"canBurn_","type":"bool"},{"internalType":"address","name":"addr_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052604051620030c6380380620030c683398181016040528101906200002991906200071d565b8686858383600390816200003e919062000a4f565b50826004908162000050919062000a4f565b5081600560146101000a81548160ff021916908360ff16021790555080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050506000620000c36200022760201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015620001a9573d6000803e3d6000fd5b5082600660146101000a81548160ff02191690831515021790555081600660156101000a81548160ff0219169083151502179055506200021a620001f26200022f60201b60201c565b85600a62000201919062000cb9565b876200020e919062000d0a565b6200025960201b60201c565b5050505050505062000eb3565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c29062000db6565b60405180910390fd5b620002df600083836200040760201b60201c565b620002fb816002546200040c60201b62000e821790919060201c565b60028190555062000359816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200040c60201b62000e821790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003fb919062000de9565b60405180910390a35050565b505050565b60008082846200041d919062000e06565b90508381101562000465576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045c9062000e91565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004d8826200048d565b810181811067ffffffffffffffff82111715620004fa57620004f96200049e565b5b80604052505050565b60006200050f6200046f565b90506200051d8282620004cd565b919050565b600067ffffffffffffffff82111562000540576200053f6200049e565b5b6200054b826200048d565b9050602081019050919050565b60005b83811015620005785780820151818401526020810190506200055b565b60008484015250505050565b60006200059b620005958462000522565b62000503565b905082815260208101848484011115620005ba57620005b962000488565b5b620005c784828562000558565b509392505050565b600082601f830112620005e757620005e662000483565b5b8151620005f984826020860162000584565b91505092915050565b6000819050919050565b620006178162000602565b81146200062357600080fd5b50565b60008151905062000637816200060c565b92915050565b600060ff82169050919050565b62000655816200063d565b81146200066157600080fd5b50565b60008151905062000675816200064a565b92915050565b60008115159050919050565b62000692816200067b565b81146200069e57600080fd5b50565b600081519050620006b28162000687565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006e582620006b8565b9050919050565b620006f781620006d8565b81146200070357600080fd5b50565b6000815190506200071781620006ec565b92915050565b600080600080600080600060e0888a0312156200073f576200073e62000479565b5b600088015167ffffffffffffffff81111562000760576200075f6200047e565b5b6200076e8a828b01620005cf565b975050602088015167ffffffffffffffff8111156200079257620007916200047e565b5b620007a08a828b01620005cf565b9650506040620007b38a828b0162000626565b9550506060620007c68a828b0162000664565b9450506080620007d98a828b01620006a1565b93505060a0620007ec8a828b01620006a1565b92505060c0620007ff8a828b0162000706565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086157607f821691505b60208210810362000877576200087662000819565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008a2565b620008ed8683620008a2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009306200092a620009248462000602565b62000905565b62000602565b9050919050565b6000819050919050565b6200094c836200090f565b620009646200095b8262000937565b848454620008af565b825550505050565b600090565b6200097b6200096c565b6200098881848462000941565b505050565b5b81811015620009b057620009a460008262000971565b6001810190506200098e565b5050565b601f821115620009ff57620009c9816200087d565b620009d48462000892565b81016020851015620009e4578190505b620009fc620009f38562000892565b8301826200098d565b50505b505050565b600082821c905092915050565b600062000a246000198460080262000a04565b1980831691505092915050565b600062000a3f838362000a11565b9150826002028217905092915050565b62000a5a826200080e565b67ffffffffffffffff81111562000a765762000a756200049e565b5b62000a82825462000848565b62000a8f828285620009b4565b600060209050601f83116001811462000ac7576000841562000ab2578287015190505b62000abe858262000a31565b86555062000b2e565b601f19841662000ad7866200087d565b60005b8281101562000b015784890151825560018201915060208501945060208101905062000ada565b8683101562000b21578489015162000b1d601f89168262000a11565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000bc45780860481111562000b9c5762000b9b62000b36565b5b600185161562000bac5780820291505b808102905062000bbc8562000b65565b945062000b7c565b94509492505050565b60008262000bdf576001905062000cb2565b8162000bef576000905062000cb2565b816001811462000c08576002811462000c135762000c49565b600191505062000cb2565b60ff84111562000c285762000c2762000b36565b5b8360020a91508482111562000c425762000c4162000b36565b5b5062000cb2565b5060208310610133831016604e8410600b841016171562000c835782820a90508381111562000c7d5762000c7c62000b36565b5b62000cb2565b62000c92848484600162000b72565b9250905081840481111562000cac5762000cab62000b36565b5b81810290505b9392505050565b600062000cc68262000602565b915062000cd3836200063d565b925062000d027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000bcd565b905092915050565b600062000d178262000602565b915062000d248362000602565b925082820262000d348162000602565b9150828204841483151762000d4e5762000d4d62000b36565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d9e601f8362000d55565b915062000dab8262000d66565b602082019050919050565b6000602082019050818103600083015262000dd18162000d8f565b9050919050565b62000de38162000602565b82525050565b600060208201905062000e00600083018462000dd8565b92915050565b600062000e138262000602565b915062000e208362000602565b925082820190508082111562000e3b5762000e3a62000b36565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000e79601b8362000d55565b915062000e868262000e41565b602082019050919050565b6000602082019050818103600083015262000eac8162000e6a565b9050919050565b6122038062000ec36000396000f3fe60806040526004361061010d5760003560e01c80638da5cb5b11610095578063a9059cbb11610064578063a9059cbb1461038a578063beb9716d146103c7578063c1eb1840146103f2578063dd62ed3e1461041d578063f2fde38b1461045a57610114565b80638da5cb5b146102ce57806395d89b41146102f95780639dc29fac14610324578063a457c2d71461034d57610114565b8063313ce567116100dc578063313ce567146101e9578063395093511461021457806340c10f191461025157806370a082311461027a578063715018a6146102b757610114565b806306fdde0314610119578063095ea7b31461014457806318160ddd1461018157806323b872dd146101ac57610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e610483565b60405161013b91906117f1565b60405180910390f35b34801561015057600080fd5b5061016b600480360381019061016691906118ac565b610515565b6040516101789190611907565b60405180910390f35b34801561018d57600080fd5b50610196610533565b6040516101a39190611931565b60405180910390f35b3480156101b857600080fd5b506101d360048036038101906101ce919061194c565b61053d565b6040516101e09190611907565b60405180910390f35b3480156101f557600080fd5b506101fe610616565b60405161020b91906119bb565b60405180910390f35b34801561022057600080fd5b5061023b600480360381019061023691906118ac565b61062d565b6040516102489190611907565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906118ac565b6106e0565b005b34801561028657600080fd5b506102a1600480360381019061029c91906119d6565b6107d4565b6040516102ae9190611931565b60405180910390f35b3480156102c357600080fd5b506102cc61081c565b005b3480156102da57600080fd5b506102e3610974565b6040516102f09190611a12565b60405180910390f35b34801561030557600080fd5b5061030e61099e565b60405161031b91906117f1565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906118ac565b610a30565b005b34801561035957600080fd5b50610374600480360381019061036f91906118ac565b610b24565b6040516103819190611907565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906118ac565b610bf1565b6040516103be9190611907565b60405180910390f35b3480156103d357600080fd5b506103dc610c0f565b6040516103e99190611907565b60405180910390f35b3480156103fe57600080fd5b50610407610c22565b6040516104149190611907565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190611a2d565b610c35565b6040516104519190611931565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906119d6565b610cbc565b005b60606003805461049290611a9c565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611a9c565b801561050b5780601f106104e05761010080835404028352916020019161050b565b820191906000526020600020905b8154815290600101906020018083116104ee57829003601f168201915b5050505050905090565b6000610529610522610ee0565b8484610ee8565b6001905092915050565b6000600254905090565b600061054a8484846110b1565b61060b84610556610ee0565b6106068560405180606001604052806028815260200161218160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105bc610ee0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b610ee8565b600190509392505050565b6000600560149054906101000a900460ff16905090565b60006106d661063a610ee0565b846106d1856001600061064b610ee0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8290919063ffffffff16565b610ee8565b6001905092915050565b6106e8610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e90611b19565b60405180910390fd5b600660149054906101000a900460ff166107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90611bab565b60405180910390fd5b6107d0828261113f565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610824610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa90611b19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109ad90611a9c565b80601f01602080910402602001604051908101604052809291908181526020018280546109d990611a9c565b8015610a265780601f106109fb57610100808354040283529160200191610a26565b820191906000526020600020905b815481529060010190602001808311610a0957829003601f168201915b5050505050905090565b610a38610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90611b19565b60405180910390fd5b600660159054906101000a900460ff16610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90611c3d565b60405180910390fd5b610b2082826112d2565b5050565b6000610be7610b31610ee0565b84610be2856040518060600160405280602581526020016121a96025913960016000610b5b610ee0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b610ee8565b6001905092915050565b6000610c05610bfe610ee0565b84846110b1565b6001905092915050565b600660149054906101000a900460ff1681565b600660159054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc4610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611b19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990611ccf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610e919190611d1e565b905083811015610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90611d9e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611e30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90611ec2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110a49190611931565b60405180910390a3505050565b600081036110ca576110c58383600061147f565b6110d6565b6110d583838361147f565b5b505050565b6000838311158290611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a91906117f1565b60405180910390fd5b50600083856111329190611ee2565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590611f62565b60405180910390fd5b6111ba60008383611712565b6111cf81600254610e8290919063ffffffff16565b600281905550611226816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c69190611931565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890611ff4565b60405180910390fd5b61134d82600083611712565b6113b881604051806060016040528060228152602001612139602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061140f8160025461171790919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114739190611931565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612086565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490612118565b60405180910390fd5b611568838383611712565b6115d38160405180606001604052806026815260200161215b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611666816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117059190611931565b60405180910390a3505050565b505050565b600061175983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110db565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561179b578082015181840152602081019050611780565b60008484015250505050565b6000601f19601f8301169050919050565b60006117c382611761565b6117cd818561176c565b93506117dd81856020860161177d565b6117e6816117a7565b840191505092915050565b6000602082019050818103600083015261180b81846117b8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061184382611818565b9050919050565b61185381611838565b811461185e57600080fd5b50565b6000813590506118708161184a565b92915050565b6000819050919050565b61188981611876565b811461189457600080fd5b50565b6000813590506118a681611880565b92915050565b600080604083850312156118c3576118c2611813565b5b60006118d185828601611861565b92505060206118e285828601611897565b9150509250929050565b60008115159050919050565b611901816118ec565b82525050565b600060208201905061191c60008301846118f8565b92915050565b61192b81611876565b82525050565b60006020820190506119466000830184611922565b92915050565b60008060006060848603121561196557611964611813565b5b600061197386828701611861565b935050602061198486828701611861565b925050604061199586828701611897565b9150509250925092565b600060ff82169050919050565b6119b58161199f565b82525050565b60006020820190506119d060008301846119ac565b92915050565b6000602082840312156119ec576119eb611813565b5b60006119fa84828501611861565b91505092915050565b611a0c81611838565b82525050565b6000602082019050611a276000830184611a03565b92915050565b60008060408385031215611a4457611a43611813565b5b6000611a5285828601611861565b9250506020611a6385828601611861565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ab457607f821691505b602082108103611ac757611ac6611a6d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b0360208361176c565b9150611b0e82611acd565b602082019050919050565b60006020820190508181036000830152611b3281611af6565b9050919050565b7f746865206d696e742066756e6374696f6e2069736e277420616374697661746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b9560218361176c565b9150611ba082611b39565b604082019050919050565b60006020820190508181036000830152611bc481611b88565b9050919050565b7f746865206275726e2066756e6374696f6e2069736e277420616374697661746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2760218361176c565b9150611c3282611bcb565b604082019050919050565b60006020820190508181036000830152611c5681611c1a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611cb960268361176c565b9150611cc482611c5d565b604082019050919050565b60006020820190508181036000830152611ce881611cac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d2982611876565b9150611d3483611876565b9250828201905080821115611d4c57611d4b611cef565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611d88601b8361176c565b9150611d9382611d52565b602082019050919050565b60006020820190508181036000830152611db781611d7b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e1a60248361176c565b9150611e2582611dbe565b604082019050919050565b60006020820190508181036000830152611e4981611e0d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611eac60228361176c565b9150611eb782611e50565b604082019050919050565b60006020820190508181036000830152611edb81611e9f565b9050919050565b6000611eed82611876565b9150611ef883611876565b9250828203905081811115611f1057611f0f611cef565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f4c601f8361176c565b9150611f5782611f16565b602082019050919050565b60006020820190508181036000830152611f7b81611f3f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fde60218361176c565b9150611fe982611f82565b604082019050919050565b6000602082019050818103600083015261200d81611fd1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061207060258361176c565b915061207b82612014565b604082019050919050565b6000602082019050818103600083015261209f81612063565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061210260238361176c565b915061210d826120a6565b604082019050919050565b60006020820190508181036000830152612131816120f5565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122081bd660d554febaa9266359a25280463f4590fc39815282f08c469f6173ee5f164736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000007ad5d924a9ae896f19b7ee3c79e8c31782514f4700000000000000000000000000000000000000000000000000000000000000125052495641544520504f4f4c205348415245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035050530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061010d5760003560e01c80638da5cb5b11610095578063a9059cbb11610064578063a9059cbb1461038a578063beb9716d146103c7578063c1eb1840146103f2578063dd62ed3e1461041d578063f2fde38b1461045a57610114565b80638da5cb5b146102ce57806395d89b41146102f95780639dc29fac14610324578063a457c2d71461034d57610114565b8063313ce567116100dc578063313ce567146101e9578063395093511461021457806340c10f191461025157806370a082311461027a578063715018a6146102b757610114565b806306fdde0314610119578063095ea7b31461014457806318160ddd1461018157806323b872dd146101ac57610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e610483565b60405161013b91906117f1565b60405180910390f35b34801561015057600080fd5b5061016b600480360381019061016691906118ac565b610515565b6040516101789190611907565b60405180910390f35b34801561018d57600080fd5b50610196610533565b6040516101a39190611931565b60405180910390f35b3480156101b857600080fd5b506101d360048036038101906101ce919061194c565b61053d565b6040516101e09190611907565b60405180910390f35b3480156101f557600080fd5b506101fe610616565b60405161020b91906119bb565b60405180910390f35b34801561022057600080fd5b5061023b600480360381019061023691906118ac565b61062d565b6040516102489190611907565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906118ac565b6106e0565b005b34801561028657600080fd5b506102a1600480360381019061029c91906119d6565b6107d4565b6040516102ae9190611931565b60405180910390f35b3480156102c357600080fd5b506102cc61081c565b005b3480156102da57600080fd5b506102e3610974565b6040516102f09190611a12565b60405180910390f35b34801561030557600080fd5b5061030e61099e565b60405161031b91906117f1565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906118ac565b610a30565b005b34801561035957600080fd5b50610374600480360381019061036f91906118ac565b610b24565b6040516103819190611907565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906118ac565b610bf1565b6040516103be9190611907565b60405180910390f35b3480156103d357600080fd5b506103dc610c0f565b6040516103e99190611907565b60405180910390f35b3480156103fe57600080fd5b50610407610c22565b6040516104149190611907565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190611a2d565b610c35565b6040516104519190611931565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906119d6565b610cbc565b005b60606003805461049290611a9c565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611a9c565b801561050b5780601f106104e05761010080835404028352916020019161050b565b820191906000526020600020905b8154815290600101906020018083116104ee57829003601f168201915b5050505050905090565b6000610529610522610ee0565b8484610ee8565b6001905092915050565b6000600254905090565b600061054a8484846110b1565b61060b84610556610ee0565b6106068560405180606001604052806028815260200161218160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105bc610ee0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b610ee8565b600190509392505050565b6000600560149054906101000a900460ff16905090565b60006106d661063a610ee0565b846106d1856001600061064b610ee0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8290919063ffffffff16565b610ee8565b6001905092915050565b6106e8610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e90611b19565b60405180910390fd5b600660149054906101000a900460ff166107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90611bab565b60405180910390fd5b6107d0828261113f565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610824610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa90611b19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109ad90611a9c565b80601f01602080910402602001604051908101604052809291908181526020018280546109d990611a9c565b8015610a265780601f106109fb57610100808354040283529160200191610a26565b820191906000526020600020905b815481529060010190602001808311610a0957829003601f168201915b5050505050905090565b610a38610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90611b19565b60405180910390fd5b600660159054906101000a900460ff16610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90611c3d565b60405180910390fd5b610b2082826112d2565b5050565b6000610be7610b31610ee0565b84610be2856040518060600160405280602581526020016121a96025913960016000610b5b610ee0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b610ee8565b6001905092915050565b6000610c05610bfe610ee0565b84846110b1565b6001905092915050565b600660149054906101000a900460ff1681565b600660159054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc4610ee0565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611b19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990611ccf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610e919190611d1e565b905083811015610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90611d9e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611e30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90611ec2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110a49190611931565b60405180910390a3505050565b600081036110ca576110c58383600061147f565b6110d6565b6110d583838361147f565b5b505050565b6000838311158290611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a91906117f1565b60405180910390fd5b50600083856111329190611ee2565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590611f62565b60405180910390fd5b6111ba60008383611712565b6111cf81600254610e8290919063ffffffff16565b600281905550611226816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c69190611931565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890611ff4565b60405180910390fd5b61134d82600083611712565b6113b881604051806060016040528060228152602001612139602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061140f8160025461171790919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114739190611931565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612086565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490612118565b60405180910390fd5b611568838383611712565b6115d38160405180606001604052806026815260200161215b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611666816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117059190611931565b60405180910390a3505050565b505050565b600061175983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110db565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561179b578082015181840152602081019050611780565b60008484015250505050565b6000601f19601f8301169050919050565b60006117c382611761565b6117cd818561176c565b93506117dd81856020860161177d565b6117e6816117a7565b840191505092915050565b6000602082019050818103600083015261180b81846117b8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061184382611818565b9050919050565b61185381611838565b811461185e57600080fd5b50565b6000813590506118708161184a565b92915050565b6000819050919050565b61188981611876565b811461189457600080fd5b50565b6000813590506118a681611880565b92915050565b600080604083850312156118c3576118c2611813565b5b60006118d185828601611861565b92505060206118e285828601611897565b9150509250929050565b60008115159050919050565b611901816118ec565b82525050565b600060208201905061191c60008301846118f8565b92915050565b61192b81611876565b82525050565b60006020820190506119466000830184611922565b92915050565b60008060006060848603121561196557611964611813565b5b600061197386828701611861565b935050602061198486828701611861565b925050604061199586828701611897565b9150509250925092565b600060ff82169050919050565b6119b58161199f565b82525050565b60006020820190506119d060008301846119ac565b92915050565b6000602082840312156119ec576119eb611813565b5b60006119fa84828501611861565b91505092915050565b611a0c81611838565b82525050565b6000602082019050611a276000830184611a03565b92915050565b60008060408385031215611a4457611a43611813565b5b6000611a5285828601611861565b9250506020611a6385828601611861565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ab457607f821691505b602082108103611ac757611ac6611a6d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b0360208361176c565b9150611b0e82611acd565b602082019050919050565b60006020820190508181036000830152611b3281611af6565b9050919050565b7f746865206d696e742066756e6374696f6e2069736e277420616374697661746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b9560218361176c565b9150611ba082611b39565b604082019050919050565b60006020820190508181036000830152611bc481611b88565b9050919050565b7f746865206275726e2066756e6374696f6e2069736e277420616374697661746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2760218361176c565b9150611c3282611bcb565b604082019050919050565b60006020820190508181036000830152611c5681611c1a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611cb960268361176c565b9150611cc482611c5d565b604082019050919050565b60006020820190508181036000830152611ce881611cac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d2982611876565b9150611d3483611876565b9250828201905080821115611d4c57611d4b611cef565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611d88601b8361176c565b9150611d9382611d52565b602082019050919050565b60006020820190508181036000830152611db781611d7b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e1a60248361176c565b9150611e2582611dbe565b604082019050919050565b60006020820190508181036000830152611e4981611e0d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611eac60228361176c565b9150611eb782611e50565b604082019050919050565b60006020820190508181036000830152611edb81611e9f565b9050919050565b6000611eed82611876565b9150611ef883611876565b9250828203905081811115611f1057611f0f611cef565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f4c601f8361176c565b9150611f5782611f16565b602082019050919050565b60006020820190508181036000830152611f7b81611f3f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fde60218361176c565b9150611fe982611f82565b604082019050919050565b6000602082019050818103600083015261200d81611fd1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061207060258361176c565b915061207b82612014565b604082019050919050565b6000602082019050818103600083015261209f81612063565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061210260238361176c565b915061210d826120a6565b604082019050919050565b60006020820190508181036000830152612131816120f5565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122081bd660d554febaa9266359a25280463f4590fc39815282f08c469f6173ee5f164736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000007ad5d924a9ae896f19b7ee3c79e8c31782514f4700000000000000000000000000000000000000000000000000000000000000125052495641544520504f4f4c205348415245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035050530000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): PRIVATE POOL SHARE
Arg [1] : symbol_ (string): PPS
Arg [2] : supply_ (uint256): 50000
Arg [3] : decimals_ (uint8): 18
Arg [4] : canMint_ (bool): True
Arg [5] : canBurn_ (bool): True
Arg [6] : addr_ (address): 0x7Ad5d924a9Ae896F19B7ee3C79e8C31782514f47
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 000000000000000000000000000000000000000000000000000000000000c350
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000007ad5d924a9ae896f19b7ee3c79e8c31782514f47
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [8] : 5052495641544520504f4f4c2053484152450000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 5050530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
24420:1342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15588:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17768:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16715:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18419:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16550:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19183:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25403:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16886:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12882:148;;;;;;;;;;;;;:::i;:::-;;12240:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15807:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25584:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19904:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17232:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24460:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24486;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17470:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13185:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15588:100;15642:13;15675:5;15668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15588:100;:::o;17768:169::-;17851:4;17868:39;17877:12;:10;:12::i;:::-;17891:7;17900:6;17868:8;:39::i;:::-;17925:4;17918:11;;17768:169;;;;:::o;16715:108::-;16776:7;16803:12;;16796:19;;16715:108;:::o;18419:355::-;18559:4;18576:36;18586:6;18594:9;18605:6;18576:9;:36::i;:::-;18623:121;18632:6;18640:12;:10;:12::i;:::-;18654:89;18692:6;18654:89;;;;;;;;;;;;;;;;;:11;:19;18666:6;18654:19;;;;;;;;;;;;;;;:33;18674:12;:10;:12::i;:::-;18654:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18623:8;:121::i;:::-;18762:4;18755:11;;18419:355;;;;;:::o;16550:100::-;16608:5;16633:9;;;;;;;;;;;16626:16;;16550:100;:::o;19183:218::-;19271:4;19288:83;19297:12;:10;:12::i;:::-;19311:7;19320:50;19359:10;19320:11;:25;19332:12;:10;:12::i;:::-;19320:25;;;;;;;;;;;;;;;:34;19346:7;19320:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19288:8;:83::i;:::-;19389:4;19382:11;;19183:218;;;;:::o;25403:171::-;12462:12;:10;:12::i;:::-;12452:22;;:6;;;;;;;;;;;:22;;;12444:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25488:7:::1;;;;;;;;;;;25480:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;25544:22;25550:7;25559:6;25544:5;:22::i;:::-;25403:171:::0;;:::o;16886:127::-;16960:7;16987:9;:18;16997:7;16987:18;;;;;;;;;;;;;;;;16980:25;;16886:127;;;:::o;12882:148::-;12462:12;:10;:12::i;:::-;12452:22;;:6;;;;;;;;;;;:22;;;12444:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12989:1:::1;12952:40;;12973:6;;;;;;;;;;;12952:40;;;;;;;;;;;;13020:1;13003:6;;:19;;;;;;;;;;;;;;;;;;12882:148::o:0;12240:79::-;12278:7;12305:6;;;;;;;;;;;12298:13;;12240:79;:::o;15807:104::-;15863:13;15896:7;15889:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15807:104;:::o;25584:171::-;12462:12;:10;:12::i;:::-;12452:22;;:6;;;;;;;;;;;:22;;;12444:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25669:7:::1;;;;;;;;;;;25661:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;25725:22;25731:7;25740:6;25725:5;:22::i;:::-;25584:171:::0;;:::o;19904:269::-;19997:4;20014:129;20023:12;:10;:12::i;:::-;20037:7;20046:96;20085:15;20046:96;;;;;;;;;;;;;;;;;:11;:25;20058:12;:10;:12::i;:::-;20046:25;;;;;;;;;;;;;;;:34;20072:7;20046:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;20014:8;:129::i;:::-;20161:4;20154:11;;19904:269;;;;:::o;17232:175::-;17318:4;17335:42;17345:12;:10;:12::i;:::-;17359:9;17370:6;17335:9;:42::i;:::-;17395:4;17388:11;;17232:175;;;;:::o;24460:19::-;;;;;;;;;;;;;:::o;24486:::-;;;;;;;;;;;;;:::o;17470:151::-;17559:7;17586:11;:18;17598:5;17586:18;;;;;;;;;;;;;;;:27;17605:7;17586:27;;;;;;;;;;;;;;;;17579:34;;17470:151;;;;:::o;13185:244::-;12462:12;:10;:12::i;:::-;12452:22;;:6;;;;;;;;;;;:22;;;12444:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13294:1:::1;13274:22;;:8;:22;;::::0;13266:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;13384:8;13355:38;;13376:6;;;;;;;;;;;13355:38;;;;;;;;;;;;13413:8;13404:6;;:17;;;;;;;;;;;;;;;;;;13185:244:::0;:::o;5131:181::-;5189:7;5209:9;5225:1;5221;:5;;;;:::i;:::-;5209:17;;5250:1;5245;:6;;5237:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;5303:1;5296:8;;;5131:181;;;;:::o;4520:98::-;4573:7;4600:10;4593:17;;4520:98;:::o;23090:380::-;23243:1;23226:19;;:5;:19;;;23218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23324:1;23305:21;;:7;:21;;;23297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23408:6;23378:11;:18;23390:5;23378:18;;;;;;;;;;;;;;;:27;23397:7;23378:27;;;;;;;;;;;;;;;:36;;;;23446:7;23430:32;;23439:5;23430:32;;;23455:6;23430:32;;;;;;:::i;:::-;;;;;;;;23090:380;;;:::o;25124:267::-;25261:1;25251:6;:11;25248:92;;25279:28;25295:4;25301:2;25305:1;25279:15;:28::i;:::-;25322:7;;25248:92;25350:33;25366:4;25372:2;25376:6;25350:15;:33::i;:::-;25124:267;;;;:::o;6034:192::-;6120:7;6153:1;6148;:6;;6156:12;6140:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6180:9;6196:1;6192;:5;;;;:::i;:::-;6180:17;;6217:1;6210:8;;;6034:192;;;;;:::o;21523:378::-;21626:1;21607:21;;:7;:21;;;21599:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;21677:49;21706:1;21710:7;21719:6;21677:20;:49::i;:::-;21754:24;21771:6;21754:12;;:16;;:24;;;;:::i;:::-;21739:12;:39;;;;21810:30;21833:6;21810:9;:18;21820:7;21810:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;21789:9;:18;21799:7;21789:18;;;;;;;;;;;;;;;:51;;;;21877:7;21856:37;;21873:1;21856:37;;;21886:6;21856:37;;;;;;:::i;:::-;;;;;;;;21523:378;;:::o;22234:418::-;22337:1;22318:21;;:7;:21;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22390:49;22411:7;22428:1;22432:6;22390:20;:49::i;:::-;22473:68;22496:6;22473:68;;;;;;;;;;;;;;;;;:9;:18;22483:7;22473:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;22452:9;:18;22462:7;22452:18;;;;;;;;;;;;;;;:89;;;;22567:24;22584:6;22567:12;;:16;;:24;;;;:::i;:::-;22552:12;:39;;;;22633:1;22607:37;;22616:7;22607:37;;;22637:6;22607:37;;;;;;:::i;:::-;;;;;;;;22234:418;;:::o;20663:573::-;20821:1;20803:20;;:6;:20;;;20795:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20905:1;20884:23;;:9;:23;;;20876:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20960:47;20981:6;20989:9;21000:6;20960:20;:47::i;:::-;21040:71;21062:6;21040:71;;;;;;;;;;;;;;;;;:9;:17;21050:6;21040:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21020:9;:17;21030:6;21020:17;;;;;;;;;;;;;;;:91;;;;21145:32;21170:6;21145:9;:20;21155:9;21145:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21122:9;:20;21132:9;21122:20;;;;;;;;;;;;;;;:55;;;;21210:9;21193:35;;21202:6;21193:35;;;21221:6;21193:35;;;;;;:::i;:::-;;;;;;;;20663:573;;;:::o;24282:131::-;;;;:::o;5595:136::-;5653:7;5680:43;5684:1;5687;5680:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5673:50;;5595:136;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:182::-;6672:34;6668:1;6660:6;6656:14;6649:58;6532:182;:::o;6720:366::-;6862:3;6883:67;6947:2;6942:3;6883:67;:::i;:::-;6876:74;;6959:93;7048:3;6959:93;:::i;:::-;7077:2;7072:3;7068:12;7061:19;;6720:366;;;:::o;7092:419::-;7258:4;7296:2;7285:9;7281:18;7273:26;;7345:9;7339:4;7335:20;7331:1;7320:9;7316:17;7309:47;7373:131;7499:4;7373:131;:::i;:::-;7365:139;;7092:419;;;:::o;7517:220::-;7657:34;7653:1;7645:6;7641:14;7634:58;7726:3;7721:2;7713:6;7709:15;7702:28;7517:220;:::o;7743:366::-;7885:3;7906:67;7970:2;7965:3;7906:67;:::i;:::-;7899:74;;7982:93;8071:3;7982:93;:::i;:::-;8100:2;8095:3;8091:12;8084:19;;7743:366;;;:::o;8115:419::-;8281:4;8319:2;8308:9;8304:18;8296:26;;8368:9;8362:4;8358:20;8354:1;8343:9;8339:17;8332:47;8396:131;8522:4;8396:131;:::i;:::-;8388:139;;8115:419;;;:::o;8540:220::-;8680:34;8676:1;8668:6;8664:14;8657:58;8749:3;8744:2;8736:6;8732:15;8725:28;8540:220;:::o;8766:366::-;8908:3;8929:67;8993:2;8988:3;8929:67;:::i;:::-;8922:74;;9005:93;9094:3;9005:93;:::i;:::-;9123:2;9118:3;9114:12;9107:19;;8766:366;;;:::o;9138:419::-;9304:4;9342:2;9331:9;9327:18;9319:26;;9391:9;9385:4;9381:20;9377:1;9366:9;9362:17;9355:47;9419:131;9545:4;9419:131;:::i;:::-;9411:139;;9138:419;;;:::o;9563:225::-;9703:34;9699:1;9691:6;9687:14;9680:58;9772:8;9767:2;9759:6;9755:15;9748:33;9563:225;:::o;9794:366::-;9936:3;9957:67;10021:2;10016:3;9957:67;:::i;:::-;9950:74;;10033:93;10122:3;10033:93;:::i;:::-;10151:2;10146:3;10142:12;10135:19;;9794:366;;;:::o;10166:419::-;10332:4;10370:2;10359:9;10355:18;10347:26;;10419:9;10413:4;10409:20;10405:1;10394:9;10390:17;10383:47;10447:131;10573:4;10447:131;:::i;:::-;10439:139;;10166:419;;;:::o;10591:180::-;10639:77;10636:1;10629:88;10736:4;10733:1;10726:15;10760:4;10757:1;10750:15;10777:191;10817:3;10836:20;10854:1;10836:20;:::i;:::-;10831:25;;10870:20;10888:1;10870:20;:::i;:::-;10865:25;;10913:1;10910;10906:9;10899:16;;10934:3;10931:1;10928:10;10925:36;;;10941:18;;:::i;:::-;10925:36;10777:191;;;;:::o;10974:177::-;11114:29;11110:1;11102:6;11098:14;11091:53;10974:177;:::o;11157:366::-;11299:3;11320:67;11384:2;11379:3;11320:67;:::i;:::-;11313:74;;11396:93;11485:3;11396:93;:::i;:::-;11514:2;11509:3;11505:12;11498:19;;11157:366;;;:::o;11529:419::-;11695:4;11733:2;11722:9;11718:18;11710:26;;11782:9;11776:4;11772:20;11768:1;11757:9;11753:17;11746:47;11810:131;11936:4;11810:131;:::i;:::-;11802:139;;11529:419;;;:::o;11954:223::-;12094:34;12090:1;12082:6;12078:14;12071:58;12163:6;12158:2;12150:6;12146:15;12139:31;11954:223;:::o;12183:366::-;12325:3;12346:67;12410:2;12405:3;12346:67;:::i;:::-;12339:74;;12422:93;12511:3;12422:93;:::i;:::-;12540:2;12535:3;12531:12;12524:19;;12183:366;;;:::o;12555:419::-;12721:4;12759:2;12748:9;12744:18;12736:26;;12808:9;12802:4;12798:20;12794:1;12783:9;12779:17;12772:47;12836:131;12962:4;12836:131;:::i;:::-;12828:139;;12555:419;;;:::o;12980:221::-;13120:34;13116:1;13108:6;13104:14;13097:58;13189:4;13184:2;13176:6;13172:15;13165:29;12980:221;:::o;13207:366::-;13349:3;13370:67;13434:2;13429:3;13370:67;:::i;:::-;13363:74;;13446:93;13535:3;13446:93;:::i;:::-;13564:2;13559:3;13555:12;13548:19;;13207:366;;;:::o;13579:419::-;13745:4;13783:2;13772:9;13768:18;13760:26;;13832:9;13826:4;13822:20;13818:1;13807:9;13803:17;13796:47;13860:131;13986:4;13860:131;:::i;:::-;13852:139;;13579:419;;;:::o;14004:194::-;14044:4;14064:20;14082:1;14064:20;:::i;:::-;14059:25;;14098:20;14116:1;14098:20;:::i;:::-;14093:25;;14142:1;14139;14135:9;14127:17;;14166:1;14160:4;14157:11;14154:37;;;14171:18;;:::i;:::-;14154:37;14004:194;;;;:::o;14204:181::-;14344:33;14340:1;14332:6;14328:14;14321:57;14204:181;:::o;14391:366::-;14533:3;14554:67;14618:2;14613:3;14554:67;:::i;:::-;14547:74;;14630:93;14719:3;14630:93;:::i;:::-;14748:2;14743:3;14739:12;14732:19;;14391:366;;;:::o;14763:419::-;14929:4;14967:2;14956:9;14952:18;14944:26;;15016:9;15010:4;15006:20;15002:1;14991:9;14987:17;14980:47;15044:131;15170:4;15044:131;:::i;:::-;15036:139;;14763:419;;;:::o;15188:220::-;15328:34;15324:1;15316:6;15312:14;15305:58;15397:3;15392:2;15384:6;15380:15;15373:28;15188:220;:::o;15414:366::-;15556:3;15577:67;15641:2;15636:3;15577:67;:::i;:::-;15570:74;;15653:93;15742:3;15653:93;:::i;:::-;15771:2;15766:3;15762:12;15755:19;;15414:366;;;:::o;15786:419::-;15952:4;15990:2;15979:9;15975:18;15967:26;;16039:9;16033:4;16029:20;16025:1;16014:9;16010:17;16003:47;16067:131;16193:4;16067:131;:::i;:::-;16059:139;;15786:419;;;:::o;16211:224::-;16351:34;16347:1;16339:6;16335:14;16328:58;16420:7;16415:2;16407:6;16403:15;16396:32;16211:224;:::o;16441:366::-;16583:3;16604:67;16668:2;16663:3;16604:67;:::i;:::-;16597:74;;16680:93;16769:3;16680:93;:::i;:::-;16798:2;16793:3;16789:12;16782:19;;16441:366;;;:::o;16813:419::-;16979:4;17017:2;17006:9;17002:18;16994:26;;17066:9;17060:4;17056:20;17052:1;17041:9;17037:17;17030:47;17094:131;17220:4;17094:131;:::i;:::-;17086:139;;16813:419;;;:::o;17238:222::-;17378:34;17374:1;17366:6;17362:14;17355:58;17447:5;17442:2;17434:6;17430:15;17423:30;17238:222;:::o;17466:366::-;17608:3;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17705:93;17794:3;17705:93;:::i;:::-;17823:2;17818:3;17814:12;17807:19;;17466:366;;;:::o;17838:419::-;18004:4;18042:2;18031:9;18027:18;18019:26;;18091:9;18085:4;18081:20;18077:1;18066:9;18062:17;18055:47;18119:131;18245:4;18119:131;:::i;:::-;18111:139;;17838:419;;;:::o
Swarm Source
ipfs://81bd660d554febaa9266359a25280463f4590fc39815282f08c469f6173ee5f1
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.