Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
16,000,000 NGM
Holders
364 (0.00%)
Transfers
-
0
Market
Price
$0.00 @ 0.000002 ETH (-1.41%)
Onchain Market Cap
$68,884.48
Circulating Supply Market Cap
$340,688.00
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
NGM
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-04-29
*/
pragma solidity ^0.6.8;
library EnumerableSet {
struct Set {
bytes32[] _values;
mapping (bytes32 => uint256) _indexes;
}
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
function _remove(Set storage set, bytes32 value) private returns (bool) {
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
bytes32 lastvalue = set._values[lastIndex];
set._values[toDeleteIndex] = lastvalue;
set._indexes[lastvalue] = toDeleteIndex + 1;
set._values.pop();
delete set._indexes[value];
return true;
} else {
return false;
}
}
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
function _at(Set storage set, uint256 index) private view returns (bytes32) {
require(set._values.length > index, "EnumerableSet: index out of bounds");
return set._values[index];
}
struct Bytes32Set {
Set _inner;
}
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
struct AddressSet {
Set _inner;
}
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
struct UintSet {
Set _inner;
}
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
}
library Address {
function isContract(address account) internal view returns (bool) {
uint256 size;
assembly { size := extcodesize(account) }
return size > 0;
}
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
if (returndata.length > 0) {
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this;
return msg.data;
}
}
abstract contract AccessControl is Context {
using EnumerableSet for EnumerableSet.AddressSet;
using Address for address;
struct RoleData {
EnumerableSet.AddressSet members;
bytes32 adminRole;
}
mapping (bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
function hasRole(bytes32 role, address account) public view returns (bool) {
return _roles[role].members.contains(account);
}
function getRoleMemberCount(bytes32 role) public view returns (uint256) {
return _roles[role].members.length();
}
function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
return _roles[role].members.at(index);
}
function getRoleAdmin(bytes32 role) public view returns (bytes32) {
return _roles[role].adminRole;
}
function grantRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
_grantRole(role, account);
}
function revokeRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
_revokeRole(role, account);
}
function renounceRole(bytes32 role, address account) public virtual {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
_roles[role].adminRole = adminRole;
}
function _grantRole(bytes32 role, address account) private {
if (_roles[role].members.add(account)) {
emit RoleGranted(role, account, _msgSender());
}
}
function _revokeRole(bytes32 role, address account) private {
if (_roles[role].members.remove(account)) {
emit RoleRevoked(role, account, _msgSender());
}
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) return 0;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
return a - b;
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a / b;
}
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a % b;
}
}
contract ERC20 is Context, IERC20 {
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;
uint8 private _decimals;
constructor (string memory name_, string memory symbol_) public {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
function name() public view virtual returns (string memory) {
return _name;
}
function symbol() public view virtual returns (string memory) {
return _symbol;
}
function decimals() public view virtual returns (uint8) {
return _decimals;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
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;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
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;
}
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);
}
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);
}
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);
}
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 _setupDecimals(uint8 decimals_) internal virtual {
_decimals = decimals_;
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
abstract contract ERC20Burnable is Context, ERC20 {
using SafeMath for uint256;
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
function burnFrom(address account, uint256 amount) public virtual {
uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
}
abstract contract Pausable is Context {
event Paused(address account);
event Unpaused(address account);
bool private _paused;
constructor () internal {
_paused = false;
}
function paused() public view virtual returns (bool) {
return _paused;
}
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
abstract contract ERC20Pausable is ERC20, Pausable {
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
}
contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable {
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
constructor(string memory name, string memory symbol) public ERC20(name, symbol) {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
_setupRole(MINTER_ROLE, _msgSender());
_setupRole(PAUSER_ROLE, _msgSender());
}
function mint(address to, uint256 amount) public virtual {
require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
_mint(to, amount);
}
function pause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
_pause();
}
function unpause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
super._beforeTokenTransfer(from, to, amount);
}
}
abstract contract EMToken is ERC20PresetMinterPauser {
constructor(string memory name, string memory symbol) public ERC20PresetMinterPauser(name, symbol) {
_setupDecimals(6);
}
function burn(uint256 amount) public override {
require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to burn");
super.burn(amount);
}
}
contract NGM is EMToken {
constructor() public EMToken("Next Generation Money", "NGM") {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"to","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601581526020017f4e6578742047656e65726174696f6e204d6f6e657900000000000000000000008152506040518060400160405280600381526020017f4e474d00000000000000000000000000000000000000000000000000000000008152508181818181600490805190602001906200009a92919062000363565b508060059080519060200190620000b392919062000363565b506012600660006101000a81548160ff021916908360ff16021790555050506000600660016101000a81548160ff021916908315150217905550620001116000801b62000105620001af60201b60201c565b620001b760201b60201c565b620001527f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a662000146620001af60201b60201c565b620001b760201b60201c565b620001937f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62000187620001af60201b60201c565b620001b760201b60201c565b5050620001a76006620001cd60201b60201c565b505062000409565b600033905090565b620001c98282620001eb60201b60201c565b5050565b80600660006101000a81548160ff021916908360ff16021790555050565b62000219816000808581526020019081526020016000206000016200028e60201b6200138d1790919060201c565b156200028a576200022f620001af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002be836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002c660201b60201c565b905092915050565b6000620002da83836200034060201b60201c565b620003355782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200033a565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003a657805160ff1916838001178555620003d7565b82800160010185558215620003d7579182015b82811115620003d6578251825591602001919060010190620003b9565b5b509050620003e69190620003ea565b5090565b5b8082111562000405576000816000905550600101620003eb565b5090565b61275b80620004196000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d539139314610861578063d547741f1461087f578063dd62ed3e146108cd578063e63ab1e914610945576101a9565b8063a457c2d714610757578063a9059cbb146107bb578063ca15c8731461081f576101a9565b80639010d07c116100d35780639010d07c146105f057806391d148541461065257806395d89b41146106b6578063a217fddf14610739576101a9565b806370a082311461054057806379cc6790146105985780638456cb59146105e6576101a9565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461049a57806340c10f19146104a457806342966c68146104f25780635c975abb14610520576101a9565b8063313ce567146103c757806336568abe146103e85780633950935114610436576101a9565b806306fdde03146101ae578063095ea7b31461023157806318160ddd1461029557806323b872dd146102b3578063248a9ca3146103375780632f2ff15d14610379575b600080fd5b6101b6610963565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a05565b60405180821515815260200191505060405180910390f35b61029d610a23565b6040518082815260200191505060405180910390f35b61031f600480360360608110156102c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a2d565b60405180821515815260200191505060405180910390f35b6103636004803603602081101561034d57600080fd5b8101908080359060200190929190505050610b06565b6040518082815260200191505060405180910390f35b6103c56004803603604081101561038f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b25565b005b6103cf610bae565b604051808260ff16815260200191505060405180910390f35b610434600480360360408110156103fe57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bc5565b005b6104826004803603604081101561044c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c5e565b60405180821515815260200191505060405180910390f35b6104a2610d11565b005b6104f0600480360360408110156104ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da1565b005b61051e6004803603602081101561050857600080fd5b8101908080359060200190929190505050610e35565b005b610528610ec7565b60405180821515815260200191505060405180910390f35b6105826004803603602081101561055657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ede565b6040518082815260200191505060405180910390f35b6105e4600480360360408110156105ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f27565b005b6105ee610f89565b005b6106266004803603604081101561060657600080fd5b810190808035906020019092919080359060200190929190505050611019565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61069e6004803603604081101561066857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061104a565b60405180821515815260200191505060405180910390f35b6106be61107b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106fe5780820151818401526020810190506106e3565b50505050905090810190601f16801561072b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61074161111d565b6040518082815260200191505060405180910390f35b6107a36004803603604081101561076d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611124565b60405180821515815260200191505060405180910390f35b610807600480360360408110156107d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111f1565b60405180821515815260200191505060405180910390f35b61084b6004803603602081101561083557600080fd5b810190808035906020019092919050505061120f565b6040518082815260200191505060405180910390f35b610869611235565b6040518082815260200191505060405180910390f35b6108cb6004803603604081101561089557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611259565b005b61092f600480360360408110156108e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e2565b6040518082815260200191505060405180910390f35b61094d611369565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a19610a126113bd565b84846113c5565b6001905092915050565b6000600354905090565b6000610a3a8484846115bc565b610afb84610a466113bd565b610af68560405180606001604052806028815260200161254f60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610aac6113bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b6113c5565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b610b4b60008084815260200190815260200160002060020154610b466113bd565b61104a565b610ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061244d602f913960400191505060405180910390fd5b610baa828261193b565b5050565b6000600660009054906101000a900460ff16905090565b610bcd6113bd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806126cd602f913960400191505060405180910390fd5b610c5a82826119ce565b5050565b6000610d07610c6b6113bd565b84610d028560026000610c7c6113bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6190919063ffffffff16565b6113c5565b6001905092915050565b610d427f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d3d6113bd565b61104a565b610d97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603981526020018061249e6039913960400191505060405180910390fd5b610d9f611ae9565b565b610dd27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610dcd6113bd565b61104a565b610e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806125ad6036913960400191505060405180910390fd5b610e318282611bd4565b5050565b610e667f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610e616113bd565b61104a565b610ebb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806125776036913960400191505060405180910390fd5b610ec481611d9d565b50565b6000600660019054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610f66826040518060600160405280602481526020016125e360249139610f5786610f526113bd565b6112e2565b6118819092919063ffffffff16565b9050610f7a83610f746113bd565b836113c5565b610f848383611db1565b505050565b610fba7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610fb56113bd565b61104a565b61100f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806126716037913960400191505060405180910390fd5b611017611f77565b565b60006110428260008086815260200190815260200160002060000161206390919063ffffffff16565b905092915050565b60006110738260008086815260200190815260200160002060000161207d90919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b6000801b81565b60006111e76111316113bd565b846111e2856040518060600160405280602581526020016126a8602591396002600061115b6113bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b6113c5565b6001905092915050565b60006112056111fe6113bd565b84846115bc565b6001905092915050565b600061122e6000808481526020019081526020016000206000016120ad565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61127f6000808481526020019081526020016000206002015461127a6113bd565b61104a565b6112d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061251f6030913960400191505060405180910390fd5b6112de82826119ce565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006113b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6120c2565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061264d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124d76022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126286025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061242a6023913960400191505060405180910390fd5b6116d3838383612132565b61173f816040518060600160405280602681526020016124f960269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117d481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061192e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118f35780820151818401526020810190506118d8565b50505050905090810190601f1680156119205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6119628160008085815260200190815260200160002060000161138d90919063ffffffff16565b156119ca5761196f6113bd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119f58160008085815260200190815260200160002060000161214290919063ffffffff16565b15611a5d57611a026113bd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015611adf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611af1610ec7565b611b63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ba76113bd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c8360008383612132565b611c9881600354611a6190919063ffffffff16565b600381905550611cf081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611dae611da86113bd565b82611db1565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126076021913960400191505060405180910390fd5b611e4382600083612132565b611eaf8160405180606001604052806022815260200161247c60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f078160035461217290919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611f7f610ec7565b15611ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120366113bd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061207283600001836121f5565b60001c905092915050565b60006120a5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612278565b905092915050565b60006120bb8260000161229b565b9050919050565b60006120ce8383612278565b61212757826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061212c565b600090505b92915050565b61213d8383836122ac565b505050565b600061216a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61231a565b905092915050565b6000828211156121ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600081836000018054905011612256576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124086022913960400191505060405180910390fd5b82600001828154811061226557fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b6122b7838383612402565b6122bf610ec7565b15612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806126fc602a913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020549050600081146123f6576000600182039050600060018660000180549050039050600086600001828154811061236557fe5b906000526020600020015490508087600001848154811061238257fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806123ba57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506123fc565b60009150505b92915050565b50505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206275726e45524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a264697066735822122069a50cc803c71c58d9947ec60afd768ff3f922fba343313796064132e7992a0164736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d539139314610861578063d547741f1461087f578063dd62ed3e146108cd578063e63ab1e914610945576101a9565b8063a457c2d714610757578063a9059cbb146107bb578063ca15c8731461081f576101a9565b80639010d07c116100d35780639010d07c146105f057806391d148541461065257806395d89b41146106b6578063a217fddf14610739576101a9565b806370a082311461054057806379cc6790146105985780638456cb59146105e6576101a9565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461049a57806340c10f19146104a457806342966c68146104f25780635c975abb14610520576101a9565b8063313ce567146103c757806336568abe146103e85780633950935114610436576101a9565b806306fdde03146101ae578063095ea7b31461023157806318160ddd1461029557806323b872dd146102b3578063248a9ca3146103375780632f2ff15d14610379575b600080fd5b6101b6610963565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a05565b60405180821515815260200191505060405180910390f35b61029d610a23565b6040518082815260200191505060405180910390f35b61031f600480360360608110156102c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a2d565b60405180821515815260200191505060405180910390f35b6103636004803603602081101561034d57600080fd5b8101908080359060200190929190505050610b06565b6040518082815260200191505060405180910390f35b6103c56004803603604081101561038f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b25565b005b6103cf610bae565b604051808260ff16815260200191505060405180910390f35b610434600480360360408110156103fe57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bc5565b005b6104826004803603604081101561044c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c5e565b60405180821515815260200191505060405180910390f35b6104a2610d11565b005b6104f0600480360360408110156104ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da1565b005b61051e6004803603602081101561050857600080fd5b8101908080359060200190929190505050610e35565b005b610528610ec7565b60405180821515815260200191505060405180910390f35b6105826004803603602081101561055657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ede565b6040518082815260200191505060405180910390f35b6105e4600480360360408110156105ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f27565b005b6105ee610f89565b005b6106266004803603604081101561060657600080fd5b810190808035906020019092919080359060200190929190505050611019565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61069e6004803603604081101561066857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061104a565b60405180821515815260200191505060405180910390f35b6106be61107b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106fe5780820151818401526020810190506106e3565b50505050905090810190601f16801561072b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61074161111d565b6040518082815260200191505060405180910390f35b6107a36004803603604081101561076d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611124565b60405180821515815260200191505060405180910390f35b610807600480360360408110156107d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111f1565b60405180821515815260200191505060405180910390f35b61084b6004803603602081101561083557600080fd5b810190808035906020019092919050505061120f565b6040518082815260200191505060405180910390f35b610869611235565b6040518082815260200191505060405180910390f35b6108cb6004803603604081101561089557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611259565b005b61092f600480360360408110156108e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e2565b6040518082815260200191505060405180910390f35b61094d611369565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a19610a126113bd565b84846113c5565b6001905092915050565b6000600354905090565b6000610a3a8484846115bc565b610afb84610a466113bd565b610af68560405180606001604052806028815260200161254f60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610aac6113bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b6113c5565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b610b4b60008084815260200190815260200160002060020154610b466113bd565b61104a565b610ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061244d602f913960400191505060405180910390fd5b610baa828261193b565b5050565b6000600660009054906101000a900460ff16905090565b610bcd6113bd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806126cd602f913960400191505060405180910390fd5b610c5a82826119ce565b5050565b6000610d07610c6b6113bd565b84610d028560026000610c7c6113bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6190919063ffffffff16565b6113c5565b6001905092915050565b610d427f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d3d6113bd565b61104a565b610d97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603981526020018061249e6039913960400191505060405180910390fd5b610d9f611ae9565b565b610dd27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610dcd6113bd565b61104a565b610e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806125ad6036913960400191505060405180910390fd5b610e318282611bd4565b5050565b610e667f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610e616113bd565b61104a565b610ebb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806125776036913960400191505060405180910390fd5b610ec481611d9d565b50565b6000600660019054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610f66826040518060600160405280602481526020016125e360249139610f5786610f526113bd565b6112e2565b6118819092919063ffffffff16565b9050610f7a83610f746113bd565b836113c5565b610f848383611db1565b505050565b610fba7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610fb56113bd565b61104a565b61100f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806126716037913960400191505060405180910390fd5b611017611f77565b565b60006110428260008086815260200190815260200160002060000161206390919063ffffffff16565b905092915050565b60006110738260008086815260200190815260200160002060000161207d90919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b6000801b81565b60006111e76111316113bd565b846111e2856040518060600160405280602581526020016126a8602591396002600061115b6113bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b6113c5565b6001905092915050565b60006112056111fe6113bd565b84846115bc565b6001905092915050565b600061122e6000808481526020019081526020016000206000016120ad565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61127f6000808481526020019081526020016000206002015461127a6113bd565b61104a565b6112d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061251f6030913960400191505060405180910390fd5b6112de82826119ce565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006113b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6120c2565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061264d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124d76022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126286025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061242a6023913960400191505060405180910390fd5b6116d3838383612132565b61173f816040518060600160405280602681526020016124f960269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117d481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061192e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118f35780820151818401526020810190506118d8565b50505050905090810190601f1680156119205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6119628160008085815260200190815260200160002060000161138d90919063ffffffff16565b156119ca5761196f6113bd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119f58160008085815260200190815260200160002060000161214290919063ffffffff16565b15611a5d57611a026113bd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015611adf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611af1610ec7565b611b63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ba76113bd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c8360008383612132565b611c9881600354611a6190919063ffffffff16565b600381905550611cf081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611dae611da86113bd565b82611db1565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126076021913960400191505060405180910390fd5b611e4382600083612132565b611eaf8160405180606001604052806022815260200161247c60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118819092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f078160035461217290919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611f7f610ec7565b15611ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120366113bd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061207283600001836121f5565b60001c905092915050565b60006120a5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612278565b905092915050565b60006120bb8260000161229b565b9050919050565b60006120ce8383612278565b61212757826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061212c565b600090505b92915050565b61213d8383836122ac565b505050565b600061216a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61231a565b905092915050565b6000828211156121ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600081836000018054905011612256576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124086022913960400191505060405180910390fd5b82600001828154811061226557fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b6122b7838383612402565b6122bf610ec7565b15612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806126fc602a913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020549050600081146123f6576000600182039050600060018660000180549050039050600086600001828154811061236557fe5b906000526020600020015490508087600001848154811061238257fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806123ba57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506123fc565b60009150505b92915050565b50505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206275726e45524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a264697066735822122069a50cc803c71c58d9947ec60afd768ff3f922fba343313796064132e7992a0164736f6c634300060c0033
Deployed Bytecode Sourcemap
20955:97:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13845:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14753:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14152:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14932:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8719:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8843:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14051:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9320:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15263:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20172:178;;;:::i;:::-;;19775:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20751:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18421:86;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14270:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17893:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19990:172;;;:::i;:::-;;8571:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8285:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13946:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15491:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14407:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8434:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19381:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9080:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14592:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19450:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13845:91;13890:13;13923:5;13916:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13845:91;:::o;14753:169::-;14836:4;14853:39;14862:12;:10;:12::i;:::-;14876:7;14885:6;14853:8;:39::i;:::-;14910:4;14903:11;;14753:169;;;;:::o;14152:108::-;14213:7;14240:12;;14233:19;;14152:108;:::o;14932:321::-;15038:4;15055:36;15065:6;15073:9;15084:6;15055:9;:36::i;:::-;15102:121;15111:6;15119:12;:10;:12::i;:::-;15133:89;15171:6;15133:89;;;;;;;;;;;;;;;;;:11;:19;15145:6;15133:19;;;;;;;;;;;;;;;:33;15153:12;:10;:12::i;:::-;15133:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;15102:8;:121::i;:::-;15241:4;15234:11;;14932:321;;;;;:::o;8719:114::-;8776:7;8803:6;:12;8810:4;8803:12;;;;;;;;;;;:22;;;8796:29;;8719:114;;;:::o;8843:227::-;8927:45;8935:6;:12;8942:4;8935:12;;;;;;;;;;;:22;;;8959:12;:10;:12::i;:::-;8927:7;:45::i;:::-;8919:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9037:25;9048:4;9054:7;9037:10;:25::i;:::-;8843:227;;:::o;14051:91::-;14100:5;14125:9;;;;;;;;;;;14118:16;;14051:91;:::o;9320:209::-;9418:12;:10;:12::i;:::-;9407:23;;:7;:23;;;9399:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9495:26;9507:4;9513:7;9495:11;:26::i;:::-;9320:209;;:::o;15263:218::-;15351:4;15368:83;15377:12;:10;:12::i;:::-;15391:7;15400:50;15439:10;15400:11;:25;15412:12;:10;:12::i;:::-;15400:25;;;;;;;;;;;;;;;:34;15426:7;15400:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15368:8;:83::i;:::-;15469:4;15462:11;;15263:218;;;;:::o;20172:178::-;20225:34;19488:24;20246:12;:10;:12::i;:::-;20225:7;:34::i;:::-;20217:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20332:10;:8;:10::i;:::-;20172:178::o;19775:205::-;19851:34;19419:24;19872:12;:10;:12::i;:::-;19851:7;:34::i;:::-;19843:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19955:17;19961:2;19965:6;19955:5;:17::i;:::-;19775:205;;:::o;20751:197::-;20816:34;19419:24;20837:12;:10;:12::i;:::-;20816:7;:34::i;:::-;20808:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20922:18;20933:6;20922:10;:18::i;:::-;20751:197;:::o;18421:86::-;18468:4;18492:7;;;;;;;;;;;18485:14;;18421:86;:::o;14270:127::-;14344:7;14371:9;:18;14381:7;14371:18;;;;;;;;;;;;;;;;14364:25;;14270:127;;;:::o;17893:295::-;17970:26;17999:84;18036:6;17999:84;;;;;;;;;;;;;;;;;:32;18009:7;18018:12;:10;:12::i;:::-;17999:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;17970:113;;18096:51;18105:7;18114:12;:10;:12::i;:::-;18128:18;18096:8;:51::i;:::-;18158:22;18164:7;18173:6;18158:5;:22::i;:::-;17893:295;;;:::o;19990:172::-;20041:34;19488:24;20062:12;:10;:12::i;:::-;20041:7;:34::i;:::-;20033:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20146:8;:6;:8::i;:::-;19990:172::o;8571:138::-;8644:7;8671:30;8695:5;8671:6;:12;8678:4;8671:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;8664:37;;8571:138;;;;:::o;8285:139::-;8354:4;8378:38;8408:7;8378:6;:12;8385:4;8378:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;8371:45;;8285:139;;;;:::o;13946:95::-;13993:13;14026:7;14019:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13946:95;:::o;7907:49::-;7952:4;7907:49;;;:::o;15491:269::-;15584:4;15601:129;15610:12;:10;:12::i;:::-;15624:7;15633:96;15672:15;15633:96;;;;;;;;;;;;;;;;;:11;:25;15645:12;:10;:12::i;:::-;15633:25;;;;;;;;;;;;;;;:34;15659:7;15633:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15601:8;:129::i;:::-;15748:4;15741:11;;15491:269;;;;:::o;14407:175::-;14493:4;14510:42;14520:12;:10;:12::i;:::-;14534:9;14545:6;14510:9;:42::i;:::-;14570:4;14563:11;;14407:175;;;;:::o;8434:127::-;8497:7;8524:29;:6;:12;8531:4;8524:12;;;;;;;;;;;:20;;:27;:29::i;:::-;8517:36;;8434:127;;;:::o;19381:62::-;19419:24;19381:62;:::o;9080:230::-;9165:45;9173:6;:12;9180:4;9173:12;;;;;;;;;;;:22;;;9197:12;:10;:12::i;:::-;9165:7;:45::i;:::-;9157:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9276:26;9288:4;9294:7;9276:11;:26::i;:::-;9080:230;;:::o;14592:151::-;14681:7;14708:11;:18;14720:5;14708:18;;;;;;;;;;;;;;;:27;14727:7;14708:27;;;;;;;;;;;;;;;;14701:34;;14592:151;;;;:::o;19450:62::-;19488:24;19450:62;:::o;2420:152::-;2490:4;2514:50;2519:3;:10;;2555:5;2539:23;;2531:32;;2514:4;:50::i;:::-;2507:57;;2420:152;;;;:::o;7377:106::-;7430:15;7465:10;7458:17;;7377:106;:::o;17135:346::-;17254:1;17237:19;;:5;:19;;;;17229:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17335:1;17316:21;;:7;:21;;;;17308:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17419:6;17389:11;:18;17401:5;17389:18;;;;;;;;;;;;;;;:27;17408:7;17389:27;;;;;;;;;;;;;;;:36;;;;17457:7;17441:32;;17450:5;17441:32;;;17466:6;17441:32;;;;;;;;;;;;;;;;;;17135:346;;;:::o;15770:539::-;15894:1;15876:20;;:6;:20;;;;15868:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15978:1;15957:23;;:9;:23;;;;15949:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16033:47;16054:6;16062:9;16073:6;16033:20;:47::i;:::-;16113:71;16135:6;16113:71;;;;;;;;;;;;;;;;;:9;:17;16123:6;16113:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16093:9;:17;16103:6;16093:17;;;;;;;;;;;;;;;:91;;;;16218:32;16243:6;16218:9;:20;16228:9;16218:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16195:9;:20;16205:9;16195:20;;;;;;;;;;;;;;;:55;;;;16283:9;16266:35;;16275:6;16266:35;;;16294:6;16266:35;;;;;;;;;;;;;;;;;;15770:539;;;:::o;12827:166::-;12913:7;12946:1;12941;:6;;12949:12;12933:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12984:1;12980;:5;12973:12;;12827:166;;;;;:::o;9868:188::-;9942:33;9967:7;9942:6;:12;9949:4;9942:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;9938:111;;;10024:12;:10;:12::i;:::-;9997:40;;10015:7;9997:40;;10009:4;9997:40;;;;;;;;;;9938:111;9868:188;;:::o;10064:192::-;10139:36;10167:7;10139:6;:12;10146:4;10139:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;10135:114;;;10224:12;:10;:12::i;:::-;10197:40;;10215:7;10197:40;;10209:4;10197:40;;;;;;;;;;10135:114;10064:192;;:::o;11916:179::-;11974:7;11994:9;12010:1;12006;:5;11994:17;;12035:1;12030;:6;;12022:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12086:1;12079:8;;;11916:179;;;;:::o;18853:120::-;18662:8;:6;:8::i;:::-;18654:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18922:5:::1;18912:7;;:15;;;;;;;;;;;;;;;;;;18943:22;18952:12;:10;:12::i;:::-;18943:22;;;;;;;;;;;;;;;;;;;;18853:120::o:0;16319:378::-;16422:1;16403:21;;:7;:21;;;;16395:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16473:49;16502:1;16506:7;16515:6;16473:20;:49::i;:::-;16550:24;16567:6;16550:12;;:16;;:24;;;;:::i;:::-;16535:12;:39;;;;16606:30;16629:6;16606:9;:18;16616:7;16606:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;16585:9;:18;16595:7;16585:18;;;;;;;;;;;;;;;:51;;;;16673:7;16652:37;;16669:1;16652:37;;;16682:6;16652:37;;;;;;;;;;;;;;;;;;16319:378;;:::o;17792:91::-;17848:27;17854:12;:10;:12::i;:::-;17868:6;17848:5;:27::i;:::-;17792:91;:::o;16707:418::-;16810:1;16791:21;;:7;:21;;;;16783:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16863:49;16884:7;16901:1;16905:6;16863:20;:49::i;:::-;16946:68;16969:6;16946:68;;;;;;;;;;;;;;;;;:9;:18;16956:7;16946:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16925:9;:18;16935:7;16925:18;;;;;;;;;;;;;;;:89;;;;17040:24;17057:6;17040:12;;:16;;:24;;;;:::i;:::-;17025:12;:39;;;;17106:1;17080:37;;17089:7;17080:37;;;17110:6;17080:37;;;;;;;;;;;;;;;;;;16707:418;;:::o;18725:118::-;18562:8;:6;:8::i;:::-;18561:9;18553:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18795:4:::1;18785:7;;:14;;;;;;;;;;;;;;;;;;18815:20;18822:12;:10;:12::i;:::-;18815:20;;;;;;;;;;;;;;;;;;;;18725:118::o:0;3054:158::-;3128:7;3179:22;3183:3;:10;;3195:5;3179:3;:22::i;:::-;3171:31;;3148:56;;3054:158;;;;:::o;2750:167::-;2830:4;2854:55;2864:3;:10;;2900:5;2884:23;;2876:32;;2854:9;:55::i;:::-;2847:62;;2750:167;;;;:::o;2927:117::-;2990:7;3017:19;3025:3;:10;;3017:7;:19::i;:::-;3010:26;;2927:117;;;:::o;189:295::-;252:4;274:21;284:3;289:5;274:9;:21::i;:::-;269:208;;312:3;:11;;329:5;312:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376:3;:11;;:18;;;;354:3;:12;;:19;367:5;354:19;;;;;;;;;;;:40;;;;416:4;409:11;;;;269:208;460:5;453:12;;189:295;;;;;:::o;20358:183::-;20489:44;20516:4;20522:2;20526:6;20489:26;:44::i;:::-;20358:183;;;:::o;2582:158::-;2655:4;2679:53;2687:3;:10;;2723:5;2707:23;;2699:32;;2679:7;:53::i;:::-;2672:60;;2582:158;;;;:::o;12105:::-;12163:7;12196:1;12191;:6;;12183:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12254:1;12250;:5;12243:12;;12105:158;;;;:::o;1394:204::-;1461:7;1510:5;1489:3;:11;;:18;;;;:26;1481:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1572:3;:11;;1584:5;1572:18;;;;;;;;;;;;;;;;1565:25;;1394:204;;;;:::o;1136:129::-;1209:4;1256:1;1233:3;:12;;:19;1246:5;1233:19;;;;;;;;;;;;:24;;1226:31;;1136:129;;;;:::o;1275:109::-;1331:7;1358:3;:11;;:18;;;;1351:25;;1275:109;;;:::o;19040:238::-;19149:44;19176:4;19182:2;19186:6;19149:26;:44::i;:::-;19215:8;:6;:8::i;:::-;19214:9;19206:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19040:238;;;:::o;494:632::-;560:4;579:18;600:3;:12;;:19;613:5;600:19;;;;;;;;;;;;579:40;;650:1;636:10;:15;632:487;;676:21;713:1;700:10;:14;676:38;;729:17;770:1;749:3;:11;;:18;;;;:22;729:42;;794:17;814:3;:11;;826:9;814:22;;;;;;;;;;;;;;;;794:42;;884:9;855:3;:11;;867:13;855:26;;;;;;;;;;;;;;;:38;;;;952:1;936:13;:17;910:3;:12;;:23;923:9;910:23;;;;;;;;;;;:43;;;;972:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;1015:3;:12;;:19;1028:5;1015:19;;;;;;;;;;;1008:26;;;1058:4;1051:11;;;;;;;;632:487;1102:5;1095:12;;;494:632;;;;;:::o;17599:92::-;;;;:::o
Swarm Source
ipfs://69a50cc803c71c58d9947ec60afd768ff3f922fba343313796064132e7992a01
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.
Add Token to MetaMask (Web3)