Comment on page
Source Code
Contract Source Code (Solidity)
Contract ABI
Contract Creation Code
Deployed ByteCode Sourcemap
Swarm Code
1
/**
2
*Submitted for verification at Etherscan.io on 2020-12-22
3
*/
4
5
// File: @openzeppelin/contracts/GSN/Context.sol
6
7
// SPDX-License-Identifier: MIT
8
9
pragma solidity ^0.6.0;
10
11
/*
12
* @dev Provides information about the current execution context, including the
13
* sender of the transaction and its data. While these are generally available
14
* via msg.sender and msg.data, they should not be accessed in such a direct
15
* manner, since when dealing with GSN meta-transactions the account sending and
16
* paying for execution may not be the actual sender (as far as an application
17
* is concerned).
18
*
19
* This contract is only required for intermediate, library-like contracts.
20
*/
21
contract Context {
22
// Empty internal constructor, to prevent people from mistakenly deploying
23
// an instance of this contract, which should be used via inheritance.
24
constructor () internal { }
25
26
function _msgSender() internal view virtual returns (address payable) {
27
return msg.sender;
28
}
29
30
function _msgData() internal view virtual returns (bytes memory) {
31
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
32
return msg.data;
33
}
34
}
35
36
// File: @openzeppelin/contracts/access/Ownable.sol
37
38
// SPDX-License-Identifier: MIT
39
40
pragma solidity ^0.6.0;
41
42
/**
43
* @dev Contract module which provides a basic access control mechanism, where
44
* there is an account (an owner) that can be granted exclusive access to
45
* specific functions.
46
*
47
* By default, the owner account will be the one that deploys the contract. This
48
* can later be changed with {transferOwnership}.
49
*
50
* This module is used through inheritance. It will make available the modifier
51
* `onlyOwner`, which can be applied to your functions to restrict their use to
52
* the owner.
53
*/
54
contract Ownable is Context {
55
address private _owner;
56
57
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
58
59
/**
60
* @dev Initializes the contract setting the deployer as the initial owner.
61
*/
62
constructor () internal {
63
address msgSender = _msgSender();
64
_owner = msgSender;
65
emit OwnershipTransferred(address(0), msgSender);
66
}
67
68
/**
69
* @dev Returns the address of the current owner.
70
*/
71
function owner() public view returns (address) {
72
return _owner;
73
}
74
75
/**
76
* @dev Throws if called by any account other than the owner.
77
*/
78
modifier onlyOwner() {
79
require(_owner == _msgSender(), "Ownable: caller is not the owner");
80
_;
81
}
82
83
/**
84
* @dev Leaves the contract without owner. It will not be possible to call
85
* `onlyOwner` functions anymore. Can only be called by the current owner.
86
*
87
* NOTE: Renouncing ownership will leave the contract without an owner,
88
* thereby removing any functionality that is only available to the owner.
89
*/
90
function renounceOwnership() public virtual onlyOwner {
91
emit OwnershipTransferred(_owner, address(0));
92
_owner = address(0);
93
}
94
95
/**
96
* @dev Transfers ownership of the contract to a new account (`newOwner`).
97
* Can only be called by the current owner.
98
*/
99
function transferOwnership(address newOwner) public virtual onlyOwner {
100
require(newOwner != address(0), "Ownable: new owner is the zero address");
101
emit OwnershipTransferred(_owner, newOwner);
102
_owner = newOwner;
103
}
104
}
105
106
// File: @openzeppelin/contracts/math/SafeMath.sol
107
108
// SPDX-License-Identifier: MIT
109
110
pragma solidity ^0.6.0;
111
112
/**
113
* @dev Wrappers over Solidity's arithmetic operations with added overflow
114
* checks.
115
*
116
* Arithmetic operations in Solidity wrap on overflow. This can easily result
117
* in bugs, because programmers usually assume that an overflow raises an
118
* error, which is the standard behavior in high level programming languages.
119
* `SafeMath` restores this intuition by reverting the transaction when an
120
* operation overflows.
121
*
122
* Using this library instead of the unchecked operations eliminates an entire
123
* class of bugs, so it's recommended to use it always.
124
*/
125
library SafeMath {
126
/**
127
* @dev Returns the addition of two unsigned integers, reverting on
128
* overflow.
129
*
130
* Counterpart to Solidity's `+` operator.
131
*
132
* Requirements:
133
* - Addition cannot overflow.
134
*/
135
function add(uint256 a, uint256 b) internal pure returns (uint256) {
136
uint256 c = a + b;
137
require(c >= a, "SafeMath: addition overflow");
138
139
return c;
140
}
141
142
/**
143
* @dev Returns the subtraction of two unsigned integers, reverting on
144
* overflow (when the result is negative).
145
*
146
* Counterpart to Solidity's `-` operator.
147
*
148
* Requirements:
149
* - Subtraction cannot overflow.
150
*/
151
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
152
return sub(a, b, "SafeMath: subtraction overflow");
153
}
154
155
/**
156
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
157
* overflow (when the result is negative).
158
*
159
* Counterpart to Solidity's `-` operator.
160
*
161
* Requirements:
162
* - Subtraction cannot overflow.
163
*/
164
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
165
require(b <= a, errorMessage);
166
uint256 c = a - b;
167
168
return c;
169
}
170
171
/**
172
* @dev Returns the multiplication of two unsigned integers, reverting on
173
* overflow.
174
*
175
* Counterpart to Solidity's `*` operator.
176
*
177
* Requirements:
178
* - Multiplication cannot overflow.
179
*/
180
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
181
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
182
// benefit is lost if 'b' is also tested.
183
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
184
if (a == 0) {
185
return 0;
186
}
187
188
uint256 c = a * b;
189
require(c / a == b, "SafeMath: multiplication overflow");
190
191
return c;
192
}
193
194
/**
195
* @dev Returns the integer division of two unsigned integers. Reverts on
196
* division by zero. The result is rounded towards zero.
197
*
198
* Counterpart to Solidity's `/` operator. Note: this function uses a
199
* `revert` opcode (which leaves remaining gas untouched) while Solidity
200
* uses an invalid opcode to revert (consuming all remaining gas).
201
*
202
* Requirements:
203
* - The divisor cannot be zero.
204
*/
205
function div(uint256 a, uint256 b) internal pure returns (uint256) {
206
return div(a, b, "SafeMath: division by zero");
207
}
208
209
/**
210
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
211
* division by zero. The result is rounded towards zero.
212
*
213
* Counterpart to Solidity's `/` operator. Note: this function uses a
214
* `revert` opcode (which leaves remaining gas untouched) while Solidity
215
* uses an invalid opcode to revert (consuming all remaining gas).
216
*
217
* Requirements:
218
* - The divisor cannot be zero.
219
*/
220
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
221
// Solidity only automatically asserts when dividing by 0
222
require(b > 0, errorMessage);
223
uint256 c = a / b;
224
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
225
226
return c;
227
}
228
229
/**
230
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
231
* Reverts when dividing by zero.
232
*
233
* Counterpart to Solidity's `%` operator. This function uses a `revert`
234
* opcode (which leaves remaining gas untouched) while Solidity uses an
235
* invalid opcode to revert (consuming all remaining gas).
236
*
237
* Requirements:
238
* - The divisor cannot be zero.
239
*/
240
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
241
return mod(a, b, "SafeMath: modulo by zero");
242
}
243
244
/**
245
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
246
* Reverts with custom message when dividing by zero.
247
*
248
* Counterpart to Solidity's `%` operator. This function uses a `revert`
249
* opcode (which leaves remaining gas untouched) while Solidity uses an
250
* invalid opcode to revert (consuming all remaining gas).
251
*
252
* Requirements:
253
* - The divisor cannot be zero.
254
*/
255
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
256
require(b != 0, errorMessage);
257
return a % b;
258
}
259
}
260
261
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
262
263
// SPDX-License-Identifier: MIT
264
265
pragma solidity ^0.6.0;
266
267
/**
268
* @dev Interface of the ERC20 standard as defined in the EIP.
269
*/
270
interface IERC20 {
271
/**
272
* @dev Returns the amount of tokens in existence.
273
*/
274
function totalSupply() external view returns (uint256);
275
276
/**
277
* @dev Returns the amount of tokens owned by `account`.
278
*/
279
function balanceOf(address account) external view returns (uint256);
280
281
/**
282
* @dev Moves `amount` tokens from the caller's account to `recipient`.
283
*
284
* Returns a boolean value indicating whether the operation succeeded.
285
*
286
* Emits a {Transfer} event.
287
*/
288
function transfer(address recipient, uint256 amount) external returns (bool);
289
290
/**
291
* @dev Returns the remaining number of tokens that `spender` will be
292
* allowed to spend on behalf of `owner` through {transferFrom}. This is
293
* zero by default.
294
*
295
* This value changes when {approve} or {transferFrom} are called.
296
*/
297
function allowance(address owner, address spender) external view returns (uint256);
298
299
/**
300
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
301
*
302
* Returns a boolean value indicating whether the operation succeeded.
303
*
304
* IMPORTANT: Beware that changing an allowance with this method brings the risk
305
* that someone may use both the old and the new allowance by unfortunate
306
* transaction ordering. One possible solution to mitigate this race
307
* condition is to first reduce the spender's allowance to 0 and set the
308
* desired value afterwards:
309
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
310
*
311
* Emits an {Approval} event.
312
*/
313
function approve(address spender, uint256 amount) external returns (bool);
314
315
/**
316
* @dev Moves `amount` tokens from `sender` to `recipient` using the
317
* allowance mechanism. `amount` is then deducted from the caller's
318
* allowance.
319
*
320
* Returns a boolean value indicating whether the operation succeeded.
321
*
322
* Emits a {Transfer} event.
323
*/
324
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
325
326
/**
327
* @dev Emitted when `value` tokens are moved from one account (`from`) to
328
* another (`to`).
329
*
330
* Note that `value` may be zero.
331
*/
332
event Transfer(address indexed from, address indexed to, uint256 value);
333
334
/**
335
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
336
* a call to {approve}. `value` is the new allowance.
337
*/
338
event Approval(address indexed owner, address indexed spender, uint256 value);
339
}
340
341
// File: contracts/Base.sol
342
343
// SPDX-License-Identifier: MIT
344
pragma solidity 0.6.0;
345
346
347
348
349
contract Base is IERC20, Ownable {
350
351
using SafeMath for uint;
352
353
uint256 private _totalSupply;
354
uint256 private _stockCount;
355
mapping (address => uint256) private _balances;
356
mapping (address => mapping (address => uint256)) private _allowed;
357
358
mapping (bytes32 => uint256) public stock;
359
address public minter;
360
address public burner;
361
362
function burn(bytes32 serial) external onlyBurner() {
363
require(serial != 0x00, "Invalid location or serial");
364
uint256 value = stock[serial];
365
366
require(value > 0, "Invalid stock");
367
require(_balances[owner()] >= value, "Cannot burn more than you own");
368
369
stock[serial] = 0;
370
_balances[owner()] = _balances[owner()].sub(value);
371
372
_stockCount = _stockCount.sub(1);
373
_totalSupply = _totalSupply.sub(value);
374
375
emit Transfer(owner(), address(0), value);
376
emit Burned(serial, value);
377
}
378
379
function mint(address to, bytes32 serial, uint256 value) external onlyMinter() returns(bool) {
380
require(serial != 0x00, "Invalid location or serial");
381
require(to != address(0), "Invalid to address");
382
require(value > 0, "Amount must be greater than zero");
383
384
stock[serial] = value;
385
_stockCount = _stockCount.add(1);
386
387
_totalSupply = _totalSupply.add(value);
388
_balances[to] = _balances[to].add(value);
389
390
emit Transfer(owner(), to, value);
391
emit Minted(serial, value);
392
393
return true;
394
}
395
396
function updateBurner(address who) external onlyOwner() returns (bool) {
397
require(who != address(0), "Invalid address");
398
burner = who;
399
return true;
400
}
401
402
function updateMinter(address who) external onlyOwner() returns (bool) {
403
require(who != address(0), "Invalid address");
404
minter = who;
405
return true;
406
}
407
408
function stockCount() public view returns (uint256) {
409
return _stockCount;
410
}
411
412
//erc20 props
413
function decimals() public pure returns (uint8) {
414
return 4;
415
}
416
417
function totalSupply() public view override returns (uint256) {
418
return _totalSupply;
419
}
420
421
function balanceOf(address who) public override view returns (uint256 balance) {
422
balance = _balances[who];
423
}
424
425
function allowance(address tokenOwner, address spender) public override view returns (uint remaining) {
426
return _allowed[tokenOwner][spender];
427
}
428
429
function approve(address spender, uint256 value) public override returns (bool) {
430
require(spender != address(0), "Invalid address");
431
432
_allowed[msg.sender][spender] = value;
433
emit Approval(msg.sender, spender, value);
434
return true;
435
}
436
437
function transfer(address to, uint256 value) public override returns (bool) {
438
_transfer(msg.sender, to, value);
439
return true;
440
}
441
442
function transferFrom(address from, address to, uint256 value) public override returns (bool success) {
443
require(to != address(0), "Invalid address");
444
445
_allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
446
_transfer(from, to, value);
447
448
emit Approval(from, msg.sender, _allowed[from][msg.sender]);
449
return true;
450
}
451
452
function _transfer(address from, address to, uint256 value) internal {
453
require(to != address(0), "Invalid to address");
454
require(from != address(0), "Invalid from address");
455
456
_balances[from] = _balances[from].sub(value);
457
_balances[to] = _balances[to].add(value);
458
459
emit Transfer(from, to, value);
460
}
461
462
event FeeUpdated(uint256 value);
463
event Burned(bytes32 indexed serial, uint value);
464
event Minted(bytes32 indexed serial, uint value);
465
466
modifier onlyBurner() {
467
require(burner == msg.sender, "Sender is not a burner");
468
_;
469
}
470
471
modifier onlyMinter() {
472
require(minter == msg.sender, "Sender is not a minter");
473
_;
474
}
475
}
476
477
// File: contracts/Gold.sol
478
479
// SPDX-License-Identifier: MIT
480
pragma solidity 0.6.0;
481
482
483
contract Gold is Base {
484
485
function symbol() public pure returns (string memory) {
486
return "AUS";
487
}
488
489
function name() public pure returns (string memory) {
490
return "Gold Standard";
491
}
492
493
constructor() public {
494
burner = msg.sender;
495
minter = msg.sender;
496
}
497
}
1
{"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":true,"internalType":"bytes32","name":"serial","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"serial","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Minted","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":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"serial","type":"bytes32"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32","name":"serial","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"stock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stockCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"updateBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"updateMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
1
608060405234801561001057600080fd5b50600061002161014660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061014e565b600033905090565b6121a78061015d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb146105a9578063c89dcfce1461060f578063c90fd9571461067f578063dd62ed3e146106c1578063f2fde38b146107395761012c565b806370a082311461045c578063715018a6146104b45780638508da5c146104be5780638da5cb5b146104dc57806395d89b41146105265761012c565b806323b872dd116100f457806323b872dd146102b057806327810b6e14610336578063313ce567146103805780633266b6ec146103a45780634eb03f6e146104005761012c565b806306fdde031461013157806307546172146101b457806308a1eee1146101fe578063095ea7b31461022c57806318160ddd14610292575b600080fd5b61013961077d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561017957808201518184015260208101905061015e565b50505050905090810190601f1680156101a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101bc6107ba565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61022a6004803603602081101561021457600080fd5b81019080803590602001909291905050506107e0565b005b6102786004803603604081101561024257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c02565b604051808215151515815260200191505060405180910390f35b61029a610d96565b6040518082815260200191505060405180910390f35b61031c600480360360608110156102c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da0565b604051808215151515815260200191505060405180910390f35b61033e61104a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610388611070565b604051808260ff1660ff16815260200191505060405180910390f35b6103e6600480360360208110156103ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611079565b604051808215151515815260200191505060405180910390f35b6104426004803603602081101561041657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611231565b604051808215151515815260200191505060405180910390f35b61049e6004803603602081101561047257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b6040518082815260200191505060405180910390f35b6104bc611432565b005b6104c66115ba565b6040518082815260200191505060405180910390f35b6104e46115c4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61052e6115ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561056e578082015181840152602081019050610553565b50505050905090810190601f16801561059b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105f5600480360360408110156105bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061162a565b604051808215151515815260200191505060405180910390f35b6106656004803603606081101561062557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611641565b604051808215151515815260200191505060405180910390f35b6106ab6004803603602081101561069557600080fd5b8101908080359060200190929190505050611a2b565b6040518082815260200191505060405180910390f35b610723600480360360408110156106d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a43565b6040518082815260200191505060405180910390f35b61077b6004803603602081101561074f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aca565b005b60606040518060400160405280600d81526020017f476f6c64205374616e6461726400000000000000000000000000000000000000815250905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206973206e6f742061206275726e65720000000000000000000081525060200191505060405180910390fd5b6000801b81141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f496e76616c6964206c6f636174696f6e206f722073657269616c00000000000081525060200191505060405180910390fd5b600060056000838152602001908152602001600020549050600081116109aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f496e76616c69642073746f636b0000000000000000000000000000000000000081525060200191505060405180910390fd5b80600360006109b76115c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610a66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f43616e6e6f74206275726e206d6f7265207468616e20796f75206f776e00000081525060200191505060405180910390fd5b60006005600084815260200190815260200160002081905550610ad88160036000610a8f6115c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd790919063ffffffff16565b60036000610ae46115c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b386001600254611cd790919063ffffffff16565b600281905550610b5381600154611cd790919063ffffffff16565b600181905550600073ffffffffffffffffffffffffffffffffffffffff16610b796115c4565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3817f332f25d7d767b49a1126573abecdd03ab5293993961c8c46f81e74c188aba555826040518082815260200191505060405180910390a25050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600154905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b610ed382600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd790919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f5e848484611d21565b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600190509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006004905090565b6000611083611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600061123b611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143a611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600254905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4155530000000000000000000000000000000000000000000000000000000000815250905090565b6000611637338484611d21565b6001905092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b6000801b83141561177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f496e76616c6964206c6f636174696f6e206f722073657269616c00000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c696420746f2061646472657373000000000000000000000000000081525060200191505060405180910390fd5b60008211611898576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f416d6f756e74206d7573742062652067726561746572207468616e207a65726f81525060200191505060405180910390fd5b8160056000858152602001908152602001600020819055506118c6600160025461200390919063ffffffff16565b6002819055506118e18260015461200390919063ffffffff16565b60018190555061193982600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461200390919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff1661199b6115c4565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3827fe5889382823e45da32d98d9b770d082563fc781d4ad6652bd2739d2494efacde836040518082815260200191505060405180910390a2600190509392505050565b60056020528060005260406000206000915090505481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ad2611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061214c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d1983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061208b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c696420746f2061646472657373000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e76616c69642066726f6d206164647265737300000000000000000000000081525060200191505060405180910390fd5b611eb981600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd790919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f4e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461200390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600033905090565b600080828401905083811015612081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000838311158290612138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120fd5780820151818401526020810190506120e2565b50505050905090810190601f16801561212a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838503905080915050939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a26469706673582212200801552ee449a9a122ddcede226bbd2a028e20ff570679f344c2a318f0d81f8d64736f6c63430006000033
2
1
16029:317:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16029:317:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16153:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;16153:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12186:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12244:568;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12244:568:0;;;;;;;;;;;;;;;;;:::i;:::-;;14380:272;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14380:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13977:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14817:375;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14817:375:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12214:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13894:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13402:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13402:180:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13590;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13590:180:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14085:122;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14085:122:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2960:148;;;:::i;:::-;;13778:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2318:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16060:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;16060:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14660:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14660:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12820:574;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12820:574:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12138:41;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12138:41:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14215:157;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14215:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3263:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3263:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16153:93;16190:13;16216:22;;;;;;;;;;;;;;;;;;;16153:93;:::o;12186:21::-;;;;;;;;;;;;;:::o;12244:568::-;15757:10;15747:20;;:6;;;;;;;;;;;:20;;;15739:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12325:4:::1;12315:14:::0;::::1;:6;:14;;12307:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;12371:13;12387:5;:13;12393:6;12387:13;;;;;;;;;;;;12371:29;;12429:1;12421:5;:9;12413:35;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;12489:5;12467:9;:18;12477:7;:5;:7::i;:::-;12467:18;;;;;;;;;;;;;;;;:27;;12459:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;12557:1;12541:5;:13;12547:6;12541:13;;;;;;;;;;;:17;;;;12590:29;12613:5;12590:9;:18;12600:7;:5;:7::i;:::-;12590:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;12569:9;:18;12579:7;:5;:7::i;:::-;12569:18;;;;;;;;;;;;;;;:50;;;;12646:18;12662:1;12646:11;;:15;;:18;;;;:::i;:::-;12632:11;:32;;;;12690:23;12707:5;12690:12;;:16;;:23;;;;:::i;:::-;12675:12;:38;;;;12757:1;12731:36;;12740:7;:5;:7::i;:::-;12731:36;;;12761:5;12731:36;;;;;;;;;;;;;;;;;;12790:6;12783:21;12798:5;12783:21;;;;;;;;;;;;;;;;;;15805:1;12244:568:::0;:::o;14380:272::-;14454:4;14498:1;14479:21;;:7;:21;;;;14471:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14565:5;14533:8;:20;14542:10;14533:20;;;;;;;;;;;;;;;:29;14554:7;14533:29;;;;;;;;;;;;;;;:37;;;;14607:7;14586:36;;14595:10;14586:36;;;14616:5;14586:36;;;;;;;;;;;;;;;;;;14640:4;14633:11;;14380:272;;;;:::o;13977:100::-;14030:7;14057:12;;14050:19;;13977:100;:::o;14817:375::-;14905:12;14952:1;14938:16;;:2;:16;;;;14930:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15016:37;15047:5;15016:8;:14;15025:4;15016:14;;;;;;;;;;;;;;;:26;15031:10;15016:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;14987:8;:14;14996:4;14987:14;;;;;;;;;;;;;;;:26;15002:10;14987:26;;;;;;;;;;;;;;;:66;;;;15064:26;15074:4;15080:2;15084:5;15064:9;:26::i;:::-;15123:10;15108:54;;15117:4;15108:54;;;15135:8;:14;15144:4;15135:14;;;;;;;;;;;;;;;:26;15150:10;15135:26;;;;;;;;;;;;;;;;15108:54;;;;;;;;;;;;;;;;;;15180:4;15173:11;;14817:375;;;;;:::o;12214:21::-;;;;;;;;;;;;;:::o;13894:75::-;13935:5;13960:1;13953:8;;13894:75;:::o;13402:180::-;13467:4;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13507:1:::1;13492:17;;:3;:17;;;;13484:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13549:3;13540:6;;:12;;;;;;;;;;;;;;;;;;13570:4;13563:11;;13402:180:::0;;;:::o;13590:::-;13655:4;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13695:1:::1;13680:17;;:3;:17;;;;13672:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13737:3;13728:6;;:12;;;;;;;;;;;;;;;;;;13758:4;13751:11;;13590:180:::0;;;:::o;14085:122::-;14147:15;14185:9;:14;14195:3;14185:14;;;;;;;;;;;;;;;;14175:24;;14085:122;;;:::o;2960:148::-;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3067:1:::1;3030:40;;3051:6;::::0;::::1;;;;;;;;;3030:40;;;;;;;;;;;;3098:1;3081:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2960:148::o:0;13778:89::-;13821:7;13848:11;;13841:18;;13778:89;:::o;2318:79::-;2356:7;2383:6;;;;;;;;;;;2376:13;;2318:79;:::o;16060:85::-;16099:13;16125:12;;;;;;;;;;;;;;;;;;;16060:85;:::o;14660:149::-;14730:4;14747:32;14757:10;14769:2;14773:5;14747:9;:32::i;:::-;14797:4;14790:11;;14660:149;;;;:::o;12820:574::-;12907:4;15873:10;15863:20;;:6;;;;;;;;;;;:20;;;15855:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12942:4:::1;12932:14:::0;::::1;:6;:14;;12924:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13010:1;12996:16;;:2;:16;;;;12988:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13062:1;13054:5;:9;13046:54;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13129:5;13113;:13;13119:6;13113:13;;;;;;;;;;;:21;;;;13159:18;13175:1;13159:11;;:15;;:18;;;;:::i;:::-;13145:11;:32;;;;13205:23;13222:5;13205:12;;:16;;:23;;;;:::i;:::-;13190:12;:38;;;;13255:24;13273:5;13255:9;:13;13265:2;13255:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;13239:9;:13;13249:2;13239:13;;;;;;;;;;;;;;;:40;;;;13315:2;13297:28;;13306:7;:5;:7::i;:::-;13297:28;;;13319:5;13297:28;;;;;;;;;;;;;;;;;;13348:6;13341:21;13356:5;13341:21;;;;;;;;;;;;;;;;;;13382:4;13375:11;;12820:574:::0;;;;;:::o;12138:41::-;;;;;;;;;;;;;;;;;:::o;14215:157::-;14301:14;14335:8;:20;14344:10;14335:20;;;;;;;;;;;;;;;:29;14356:7;14335:29;;;;;;;;;;;;;;;;14328:36;;14215:157;;;;:::o;3263:244::-;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3372:1:::1;3352:22;;:8;:22;;;;3344:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462:8;3433:38;;3454:6;::::0;::::1;;;;;;;;;3433:38;;;;;;;;;;;;3491:8;3482:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3263:244:::0;:::o;4918:136::-;4976:7;5003:43;5007:1;5010;5003:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4996:50;;4918:136;;;;:::o;15200:348::-;15302:1;15288:16;;:2;:16;;;;15280:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15362:1;15346:18;;:4;:18;;;;15338:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15420:26;15440:5;15420:9;:15;15430:4;15420:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;15402:9;:15;15412:4;15402:15;;;;;;;;;;;;;;;:44;;;;15473:24;15491:5;15473:9;:13;15483:2;15473:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;15457:9;:13;15467:2;15457:13;;;;;;;;;;;;;;;:40;;;;15530:2;15515:25;;15524:4;15515:25;;;15534:5;15515:25;;;;;;;;;;;;;;;;;;15200:348;;;:::o;839:106::-;892:15;927:10;920:17;;839:106;:::o;4462:181::-;4520:7;4540:9;4556:1;4552;:5;4540:17;;4581:1;4576;:6;;4568:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4634:1;4627:8;;;4462:181;;;;:::o;5349:192::-;5435:7;5468:1;5463;:6;;5471:12;5455:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5455:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5495:9;5511:1;5507;:5;5495:17;;5532:1;5525:8;;;5349:192;;;;;:::o
1
ipfs://0801552ee449a9a122ddcede226bbd2a028e20ff570679f344c2a318f0d81f
Contract Source Code
Contract ABI
Contract Creation Code
Deployed ByteCode Sourcemap
Swarm Source
1
/**
2
*Submitted for verification at Etherscan.io on 2020-12-22
3
*/
4
5
// File: @openzeppelin/contracts/GSN/Context.sol
6
7
// SPDX-License-Identifier: MIT
8
9
pragma solidity ^0.6.0;
10
11
/*
12
* @dev Provides information about the current execution context, including the
13
* sender of the transaction and its data. While these are generally available
14
* via msg.sender and msg.data, they should not be accessed in such a direct
15
* manner, since when dealing with GSN meta-transactions the account sending and
16
* paying for execution may not be the actual sender (as far as an application
17
* is concerned).
18
*
19
* This contract is only required for intermediate, library-like contracts.
20
*/
21
contract Context {
22
// Empty internal constructor, to prevent people from mistakenly deploying
23
// an instance of this contract, which should be used via inheritance.
24
constructor () internal { }
25
26
function _msgSender() internal view virtual returns (address payable) {
27
return msg.sender;
28
}
29
30
function _msgData() internal view virtual returns (bytes memory) {
31
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
32
return msg.data;
33
}
34
}
35
36
// File: @openzeppelin/contracts/access/Ownable.sol
37
38
// SPDX-License-Identifier: MIT
39
40
pragma solidity ^0.6.0;
41
42
/**
43
* @dev Contract module which provides a basic access control mechanism, where
44
* there is an account (an owner) that can be granted exclusive access to
45
* specific functions.
46
*
47
* By default, the owner account will be the one that deploys the contract. This
48
* can later be changed with {transferOwnership}.
49
*
50
* This module is used through inheritance. It will make available the modifier
51
* `onlyOwner`, which can be applied to your functions to restrict their use to
52
* the owner.
53
*/
54
contract Ownable is Context {
55
address private _owner;
56
57
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
58
59
/**
60
* @dev Initializes the contract setting the deployer as the initial owner.
61
*/
62
constructor () internal {
63
address msgSender = _msgSender();
64
_owner = msgSender;
65
emit OwnershipTransferred(address(0), msgSender);
66
}
67
68
/**
69
* @dev Returns the address of the current owner.
70
*/
71
function owner() public view returns (address) {
72
return _owner;
73
}
74
75
/**
76
* @dev Throws if called by any account other than the owner.
77
*/
78
modifier onlyOwner() {
79
require(_owner == _msgSender(), "Ownable: caller is not the owner");
80
_;
81
}
82
83
/**
84
* @dev Leaves the contract without owner. It will not be possible to call
85
* `onlyOwner` functions anymore. Can only be called by the current owner.
86
*
87
* NOTE: Renouncing ownership will leave the contract without an owner,
88
* thereby removing any functionality that is only available to the owner.
89
*/
90
function renounceOwnership() public virtual onlyOwner {
91
emit OwnershipTransferred(_owner, address(0));
92
_owner = address(0);
93
}
94
95
/**
96
* @dev Transfers ownership of the contract to a new account (`newOwner`).
97
* Can only be called by the current owner.
98
*/
99
function transferOwnership(address newOwner) public virtual onlyOwner {
100
require(newOwner != address(0), "Ownable: new owner is the zero address");
101
emit OwnershipTransferred(_owner, newOwner);
102
_owner = newOwner;
103
}
104
}
105
106
// File: @openzeppelin/contracts/math/SafeMath.sol
107
108
// SPDX-License-Identifier: MIT
109
110
pragma solidity ^0.6.0;
111
112
/**
113
* @dev Wrappers over Solidity's arithmetic operations with added overflow
114
* checks.
115
*
116
* Arithmetic operations in Solidity wrap on overflow. This can easily result
117
* in bugs, because programmers usually assume that an overflow raises an
118
* error, which is the standard behavior in high level programming languages.
119
* `SafeMath` restores this intuition by reverting the transaction when an
120
* operation overflows.
121
*
122
* Using this library instead of the unchecked operations eliminates an entire
123
* class of bugs, so it's recommended to use it always.
124
*/
125
library SafeMath {
126
/**
127
* @dev Returns the addition of two unsigned integers, reverting on
128
* overflow.
129
*
130
* Counterpart to Solidity's `+` operator.
131
*
132
* Requirements:
133
* - Addition cannot overflow.
134
*/
135
function add(uint256 a, uint256 b) internal pure returns (uint256) {
136
uint256 c = a + b;
137
require(c >= a, "SafeMath: addition overflow");
138
139
return c;
140
}
141
142
/**
143
* @dev Returns the subtraction of two unsigned integers, reverting on
144
* overflow (when the result is negative).
145
*
146
* Counterpart to Solidity's `-` operator.
147
*
148
* Requirements:
149
* - Subtraction cannot overflow.
150
*/
151
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
152
return sub(a, b, "SafeMath: subtraction overflow");
153
}
154
155
/**
156
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
157
* overflow (when the result is negative).
158
*
159
* Counterpart to Solidity's `-` operator.
160
*
161
* Requirements:
162
* - Subtraction cannot overflow.
163
*/
164
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
165
require(b <= a, errorMessage);
166
uint256 c = a - b;
167
168
return c;
169
}
170
171
/**
172
* @dev Returns the multiplication of two unsigned integers, reverting on
173
* overflow.
174
*
175
* Counterpart to Solidity's `*` operator.
176
*
177
* Requirements:
178
* - Multiplication cannot overflow.
179
*/
180
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
181
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
182
// benefit is lost if 'b' is also tested.
183
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
184
if (a == 0) {
185
return 0;
186
}
187
188
uint256 c = a * b;
189
require(c / a == b, "SafeMath: multiplication overflow");
190
191
return c;
192
}
193
194
/**
195
* @dev Returns the integer division of two unsigned integers. Reverts on
196
* division by zero. The result is rounded towards zero.
197
*
198
* Counterpart to Solidity's `/` operator. Note: this function uses a
199
* `revert` opcode (which leaves remaining gas untouched) while Solidity
200
* uses an invalid opcode to revert (consuming all remaining gas).
201
*
202
* Requirements:
203
* - The divisor cannot be zero.
204
*/
205
function div(uint256 a, uint256 b) internal pure returns (uint256) {
206
return div(a, b, "SafeMath: division by zero");
207
}
208
209
/**
210
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
211
* division by zero. The result is rounded towards zero.
212
*
213
* Counterpart to Solidity's `/` operator. Note: this function uses a
214
* `revert` opcode (which leaves remaining gas untouched) while Solidity
215
* uses an invalid opcode to revert (consuming all remaining gas).
216
*
217
* Requirements:
218
* - The divisor cannot be zero.
219
*/
220
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
221
// Solidity only automatically asserts when dividing by 0
222
require(b > 0, errorMessage);
223
uint256 c = a / b;
224
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
225
226
return c;
227
}
228
229
/**
230
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
231
* Reverts when dividing by zero.
232
*
233
* Counterpart to Solidity's `%` operator. This function uses a `revert`
234
* opcode (which leaves remaining gas untouched) while Solidity uses an
235
* invalid opcode to revert (consuming all remaining gas).
236
*
237
* Requirements:
238
* - The divisor cannot be zero.
239
*/
240
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
241
return mod(a, b, "SafeMath: modulo by zero");
242
}
243
244
/**
245
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
246
* Reverts with custom message when dividing by zero.
247
*
248
* Counterpart to Solidity's `%` operator. This function uses a `revert`
249
* opcode (which leaves remaining gas untouched) while Solidity uses an
250
* invalid opcode to revert (consuming all remaining gas).
251
*
252
* Requirements:
253
* - The divisor cannot be zero.
254
*/
255
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
256
require(b != 0, errorMessage);
257
return a % b;
258
}
259
}
260
261
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
262
263
// SPDX-License-Identifier: MIT
264
265
pragma solidity ^0.6.0;
266
267
/**
268
* @dev Interface of the ERC20 standard as defined in the EIP.
269
*/
270
interface IERC20 {
271
/**
272
* @dev Returns the amount of tokens in existence.
273
*/
274
function totalSupply() external view returns (uint256);
275
276
/**
277
* @dev Returns the amount of tokens owned by `account`.
278
*/
279
function balanceOf(address account) external view returns (uint256);
280
281
/**
282
* @dev Moves `amount` tokens from the caller's account to `recipient`.
283
*
284
* Returns a boolean value indicating whether the operation succeeded.
285
*
286
* Emits a {Transfer} event.
287
*/
288
function transfer(address recipient, uint256 amount) external returns (bool);
289
290
/**
291
* @dev Returns the remaining number of tokens that `spender` will be
292
* allowed to spend on behalf of `owner` through {transferFrom}. This is
293
* zero by default.
294
*
295
* This value changes when {approve} or {transferFrom} are called.
296
*/
297
function allowance(address owner, address spender) external view returns (uint256);
298
299
/**
300
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
301
*
302
* Returns a boolean value indicating whether the operation succeeded.
303
*
304
* IMPORTANT: Beware that changing an allowance with this method brings the risk
305
* that someone may use both the old and the new allowance by unfortunate
306
* transaction ordering. One possible solution to mitigate this race
307
* condition is to first reduce the spender's allowance to 0 and set the
308
* desired value afterwards:
309
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
310
*
311
* Emits an {Approval} event.
312
*/
313
function approve(address spender, uint256 amount) external returns (bool);
314
315
/**
316
* @dev Moves `amount` tokens from `sender` to `recipient` using the
317
* allowance mechanism. `amount` is then deducted from the caller's
318
* allowance.
319
*
320
* Returns a boolean value indicating whether the operation succeeded.
321
*
322
* Emits a {Transfer} event.
323
*/
324
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
325
326
/**
327
* @dev Emitted when `value` tokens are moved from one account (`from`) to
328
* another (`to`).
329
*
330
* Note that `value` may be zero.
331
*/
332
event Transfer(address indexed from, address indexed to, uint256 value);
333
334
/**
335
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
336
* a call to {approve}. `value` is the new allowance.
337
*/
338
event Approval(address indexed owner, address indexed spender, uint256 value);
339
}
340
341
// File: contracts/Base.sol
342
343
// SPDX-License-Identifier: MIT
344
pragma solidity 0.6.0;
345
346
347
348
349
contract Base is IERC20, Ownable {
350
351
using SafeMath for uint;
352
353
uint256 private _totalSupply;
354
uint256 private _stockCount;
355
mapping (address => uint256) private _balances;
356
mapping (address => mapping (address => uint256)) private _allowed;
357
358
mapping (bytes32 => uint256) public stock;
359
address public minter;
360
address public burner;
361
362
function burn(bytes32 serial) external onlyBurner() {
363
require(serial != 0x00, "Invalid location or serial");
364
uint256 value = stock[serial];
365
366
require(value > 0, "Invalid stock");
367
require(_balances[owner()] >= value, "Cannot burn more than you own");
368
369
stock[serial] = 0;
370
_balances[owner()] = _balances[owner()].sub(value);
371
372
_stockCount = _stockCount.sub(1);
373
_totalSupply = _totalSupply.sub(value);
374
375
emit Transfer(owner(), address(0), value);
376
emit Burned(serial, value);
377
}
378
379
function mint(address to, bytes32 serial, uint256 value) external onlyMinter() returns(bool) {
380
require(serial != 0x00, "Invalid location or serial");
381
require(to != address(0), "Invalid to address");
382
require(value > 0, "Amount must be greater than zero");
383
384
stock[serial] = value;
385
_stockCount = _stockCount.add(1);
386
387
_totalSupply = _totalSupply.add(value);
388
_balances[to] = _balances[to].add(value);
389
390
emit Transfer(owner(), to, value);
391
emit Minted(serial, value);
392
393
return true;
394
}
395
396
function updateBurner(address who) external onlyOwner() returns (bool) {
397
require(who != address(0), "Invalid address");
398
burner = who;
399
return true;
400
}
401
402
function updateMinter(address who) external onlyOwner() returns (bool) {
403
require(who != address(0), "Invalid address");
404
minter = who;
405
return true;
406
}
407
408
function stockCount() public view returns (uint256) {
409
return _stockCount;
410
}
411
412
//erc20 props
413
function decimals() public pure returns (uint8) {
414
return 4;
415
}
416
417
function totalSupply() public view override returns (uint256) {
418
return _totalSupply;
419
}
420
421
function balanceOf(address who) public override view returns (uint256 balance) {
422
balance = _balances[who];
423
}
424
425
function allowance(address tokenOwner, address spender) public override view returns (uint remaining) {
426
return _allowed[tokenOwner][spender];
427
}
428
429
function approve(address spender, uint256 value) public override returns (bool) {
430
require(spender != address(0), "Invalid address");
431
432
_allowed[msg.sender][spender] = value;
433
emit Approval(msg.sender, spender, value);
434
return true;
435
}
436
437
function transfer(address to, uint256 value) public override returns (bool) {
438
_transfer(msg.sender, to, value);
439
return true;
440
}
441
442
function transferFrom(address from, address to, uint256 value) public override returns (bool success) {
443
require(to != address(0), "Invalid address");
444
445
_allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
446
_transfer(from, to, value);
447
448
emit Approval(from, msg.sender, _allowed[from][msg.sender]);
449
return true;
450
}
451
452
function _transfer(address from, address to, uint256 value) internal {
453
require(to != address(0), "Invalid to address");
454
require(from != address(0), "Invalid from address");
455
456
_balances[from] = _balances[from].sub(value);
457
_balances[to] = _balances[to].add(value);
458
459
emit Transfer(from, to, value);
460
}
461
462
event FeeUpdated(uint256 value);
463
event Burned(bytes32 indexed serial, uint value);
464
event Minted(bytes32 indexed serial, uint value);
465
466
modifier onlyBurner() {
467
require(burner == msg.sender, "Sender is not a burner");
468
_;
469
}
470
471
modifier onlyMinter() {
472
require(minter == msg.sender, "Sender is not a minter");
473
_;
474
}
475
}
476
477
// File: contracts/Silver.sol
478
479
// SPDX-License-Identifier: MIT
480
pragma solidity =0.6.0;
481
482
483
contract Silver is Base {
484
485
function symbol() public pure returns (string memory) {
486
return "AGS";
487
}
488
489
function name() public pure returns (string memory) {
490
return "Silver Standard";
491
}
492
493
constructor() public {
494
burner = msg.sender;
495
minter = msg.sender;
496
}
497
}
1
[{"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":true,"internalType":"bytes32","name":"serial","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"serial","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Minted","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":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"serial","type":"bytes32"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32","name":"serial","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"stock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stockCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"updateBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"updateMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
1
608060405234801561001057600080fd5b50600061002161014660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061014e565b600033905090565b6121a78061015d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb146105a9578063c89dcfce1461060f578063c90fd9571461067f578063dd62ed3e146106c1578063f2fde38b146107395761012c565b806370a082311461045c578063715018a6146104b45780638508da5c146104be5780638da5cb5b146104dc57806395d89b41146105265761012c565b806323b872dd116100f457806323b872dd146102b057806327810b6e14610336578063313ce567146103805780633266b6ec146103a45780634eb03f6e146104005761012c565b806306fdde031461013157806307546172146101b457806308a1eee1146101fe578063095ea7b31461022c57806318160ddd14610292575b600080fd5b61013961077d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561017957808201518184015260208101905061015e565b50505050905090810190601f1680156101a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101bc6107ba565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61022a6004803603602081101561021457600080fd5b81019080803590602001909291905050506107e0565b005b6102786004803603604081101561024257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c02565b604051808215151515815260200191505060405180910390f35b61029a610d96565b6040518082815260200191505060405180910390f35b61031c600480360360608110156102c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da0565b604051808215151515815260200191505060405180910390f35b61033e61104a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610388611070565b604051808260ff1660ff16815260200191505060405180910390f35b6103e6600480360360208110156103ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611079565b604051808215151515815260200191505060405180910390f35b6104426004803603602081101561041657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611231565b604051808215151515815260200191505060405180910390f35b61049e6004803603602081101561047257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b6040518082815260200191505060405180910390f35b6104bc611432565b005b6104c66115ba565b6040518082815260200191505060405180910390f35b6104e46115c4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61052e6115ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561056e578082015181840152602081019050610553565b50505050905090810190601f16801561059b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105f5600480360360408110156105bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061162a565b604051808215151515815260200191505060405180910390f35b6106656004803603606081101561062557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611641565b604051808215151515815260200191505060405180910390f35b6106ab6004803603602081101561069557600080fd5b8101908080359060200190929190505050611a2b565b6040518082815260200191505060405180910390f35b610723600480360360408110156106d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a43565b6040518082815260200191505060405180910390f35b61077b6004803603602081101561074f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aca565b005b60606040518060400160405280600f81526020017f53696c766572205374616e646172640000000000000000000000000000000000815250905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206973206e6f742061206275726e65720000000000000000000081525060200191505060405180910390fd5b6000801b81141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f496e76616c6964206c6f636174696f6e206f722073657269616c00000000000081525060200191505060405180910390fd5b600060056000838152602001908152602001600020549050600081116109aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f496e76616c69642073746f636b0000000000000000000000000000000000000081525060200191505060405180910390fd5b80600360006109b76115c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610a66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f43616e6e6f74206275726e206d6f7265207468616e20796f75206f776e00000081525060200191505060405180910390fd5b60006005600084815260200190815260200160002081905550610ad88160036000610a8f6115c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd790919063ffffffff16565b60036000610ae46115c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b386001600254611cd790919063ffffffff16565b600281905550610b5381600154611cd790919063ffffffff16565b600181905550600073ffffffffffffffffffffffffffffffffffffffff16610b796115c4565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3817f332f25d7d767b49a1126573abecdd03ab5293993961c8c46f81e74c188aba555826040518082815260200191505060405180910390a25050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600154905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b610ed382600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd790919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f5e848484611d21565b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600190509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006004905090565b6000611083611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600061123b611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143a611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600254905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4147530000000000000000000000000000000000000000000000000000000000815250905090565b6000611637338484611d21565b6001905092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e646572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b6000801b83141561177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f496e76616c6964206c6f636174696f6e206f722073657269616c00000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c696420746f2061646472657373000000000000000000000000000081525060200191505060405180910390fd5b60008211611898576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f416d6f756e74206d7573742062652067726561746572207468616e207a65726f81525060200191505060405180910390fd5b8160056000858152602001908152602001600020819055506118c6600160025461200390919063ffffffff16565b6002819055506118e18260015461200390919063ffffffff16565b60018190555061193982600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461200390919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff1661199b6115c4565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3827fe5889382823e45da32d98d9b770d082563fc781d4ad6652bd2739d2494efacde836040518082815260200191505060405180910390a2600190509392505050565b60056020528060005260406000206000915090505481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ad2611ffb565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061214c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d1983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061208b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c696420746f2061646472657373000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e76616c69642066726f6d206164647265737300000000000000000000000081525060200191505060405180910390fd5b611eb981600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd790919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f4e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461200390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600033905090565b600080828401905083811015612081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000838311158290612138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120fd5780820151818401526020810190506120e2565b50505050905090810190601f16801561212a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838503905080915050939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a264697066735822122023a236e2192cb9d47c38508288dcf5962d6228049780d084bedea3a49068f96b64736f6c63430006000033
1
16032:321:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16032:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16158:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;16158:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12186:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12244:568;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12244:568:0;;;;;;;;;;;;;;;;;:::i;:::-;;14380:272;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14380:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13977:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14817:375;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14817:375:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12214:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13894:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13402:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13402:180:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13590;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13590:180:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14085:122;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14085:122:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2960:148;;;:::i;:::-;;13778:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2318:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16065:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;16065:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14660:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14660:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12820:574;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12820:574:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12138:41;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12138:41:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14215:157;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14215:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3263:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3263:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16158:95;16195:13;16221:24;;;;;;;;;;;;;;;;;;;16158:95;:::o;12186:21::-;;;;;;;;;;;;;:::o;12244:568::-;15757:10;15747:20;;:6;;;;;;;;;;;:20;;;15739:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12325:4:::1;12315:14:::0;::::1;:6;:14;;12307:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;12371:13;12387:5;:13;12393:6;12387:13;;;;;;;;;;;;12371:29;;12429:1;12421:5;:9;12413:35;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;12489:5;12467:9;:18;12477:7;:5;:7::i;:::-;12467:18;;;;;;;;;;;;;;;;:27;;12459:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;12557:1;12541:5;:13;12547:6;12541:13;;;;;;;;;;;:17;;;;12590:29;12613:5;12590:9;:18;12600:7;:5;:7::i;:::-;12590:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;12569:9;:18;12579:7;:5;:7::i;:::-;12569:18;;;;;;;;;;;;;;;:50;;;;12646:18;12662:1;12646:11;;:15;;:18;;;;:::i;:::-;12632:11;:32;;;;12690:23;12707:5;12690:12;;:16;;:23;;;;:::i;:::-;12675:12;:38;;;;12757:1;12731:36;;12740:7;:5;:7::i;:::-;12731:36;;;12761:5;12731:36;;;;;;;;;;;;;;;;;;12790:6;12783:21;12798:5;12783:21;;;;;;;;;;;;;;;;;;15805:1;12244:568:::0;:::o;14380:272::-;14454:4;14498:1;14479:21;;:7;:21;;;;14471:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14565:5;14533:8;:20;14542:10;14533:20;;;;;;;;;;;;;;;:29;14554:7;14533:29;;;;;;;;;;;;;;;:37;;;;14607:7;14586:36;;14595:10;14586:36;;;14616:5;14586:36;;;;;;;;;;;;;;;;;;14640:4;14633:11;;14380:272;;;;:::o;13977:100::-;14030:7;14057:12;;14050:19;;13977:100;:::o;14817:375::-;14905:12;14952:1;14938:16;;:2;:16;;;;14930:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15016:37;15047:5;15016:8;:14;15025:4;15016:14;;;;;;;;;;;;;;;:26;15031:10;15016:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;14987:8;:14;14996:4;14987:14;;;;;;;;;;;;;;;:26;15002:10;14987:26;;;;;;;;;;;;;;;:66;;;;15064:26;15074:4;15080:2;15084:5;15064:9;:26::i;:::-;15123:10;15108:54;;15117:4;15108:54;;;15135:8;:14;15144:4;15135:14;;;;;;;;;;;;;;;:26;15150:10;15135:26;;;;;;;;;;;;;;;;15108:54;;;;;;;;;;;;;;;;;;15180:4;15173:11;;14817:375;;;;;:::o;12214:21::-;;;;;;;;;;;;;:::o;13894:75::-;13935:5;13960:1;13953:8;;13894:75;:::o;13402:180::-;13467:4;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13507:1:::1;13492:17;;:3;:17;;;;13484:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13549:3;13540:6;;:12;;;;;;;;;;;;;;;;;;13570:4;13563:11;;13402:180:::0;;;:::o;13590:::-;13655:4;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13695:1:::1;13680:17;;:3;:17;;;;13672:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13737:3;13728:6;;:12;;;;;;;;;;;;;;;;;;13758:4;13751:11;;13590:180:::0;;;:::o;14085:122::-;14147:15;14185:9;:14;14195:3;14185:14;;;;;;;;;;;;;;;;14175:24;;14085:122;;;:::o;2960:148::-;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3067:1:::1;3030:40;;3051:6;::::0;::::1;;;;;;;;;3030:40;;;;;;;;;;;;3098:1;3081:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2960:148::o:0;13778:89::-;13821:7;13848:11;;13841:18;;13778:89;:::o;2318:79::-;2356:7;2383:6;;;;;;;;;;;2376:13;;2318:79;:::o;16065:85::-;16104:13;16130:12;;;;;;;;;;;;;;;;;;;16065:85;:::o;14660:149::-;14730:4;14747:32;14757:10;14769:2;14773:5;14747:9;:32::i;:::-;14797:4;14790:11;;14660:149;;;;:::o;12820:574::-;12907:4;15873:10;15863:20;;:6;;;;;;;;;;;:20;;;15855:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12942:4:::1;12932:14:::0;::::1;:6;:14;;12924:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13010:1;12996:16;;:2;:16;;;;12988:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13062:1;13054:5;:9;13046:54;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;13129:5;13113;:13;13119:6;13113:13;;;;;;;;;;;:21;;;;13159:18;13175:1;13159:11;;:15;;:18;;;;:::i;:::-;13145:11;:32;;;;13205:23;13222:5;13205:12;;:16;;:23;;;;:::i;:::-;13190:12;:38;;;;13255:24;13273:5;13255:9;:13;13265:2;13255:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;13239:9;:13;13249:2;13239:13;;;;;;;;;;;;;;;:40;;;;13315:2;13297:28;;13306:7;:5;:7::i;:::-;13297:28;;;13319:5;13297:28;;;;;;;;;;;;;;;;;;13348:6;13341:21;13356:5;13341:21;;;;;;;;;;;;;;;;;;13382:4;13375:11;;12820:574:::0;;;;;:::o;12138:41::-;;;;;;;;;;;;;;;;;:::o;14215:157::-;14301:14;14335:8;:20;14344:10;14335:20;;;;;;;;;;;;;;;:29;14356:7;14335:29;;;;;;;;;;;;;;;;14328:36;;14215:157;;;;:::o;3263:244::-;2540:12;:10;:12::i;:::-;2530:22;;:6;;;;;;;;;;;:22;;;2522:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3372:1:::1;3352:22;;:8;:22;;;;3344:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462:8;3433:38;;3454:6;::::0;::::1;;;;;;;;;3433:38;;;;;;;;;;;;3491:8;3482:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3263:244:::0;:::o;4918:136::-;4976:7;5003:43;5007:1;5010;5003:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4996:50;;4918:136;;;;:::o;15200:348::-;15302:1;15288:16;;:2;:16;;;;15280:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15362:1;15346:18;;:4;:18;;;;15338:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15420:26;15440:5;15420:9;:15;15430:4;15420:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;15402:9;:15;15412:4;15402:15;;;;;;;;;;;;;;;:44;;;;15473:24;15491:5;15473:9;:13;15483:2;15473:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;15457:9;:13;15467:2;15457:13;;;;;;;;;;;;;;;:40;;;;15530:2;15515:25;;15524:4;15515:25;;;15534:5;15515:25;;;;;;;;;;;;;;;;;;15200:348;;;:::o;839:106::-;892:15;927:10;920:17;;839:106;:::o;4462:181::-;4520:7;4540:9;4556:1;4552;:5;4540:17;;4581:1;4576;:6;;4568:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4634:1;4627:8;;;4462:181;;;;:::o;5349:192::-;5435:7;5468:1;5463;:6;;5471:12;5455:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5455:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5495:9;5511:1;5507;:5;5495:17;;5532:1;5525:8;;;5349:192;;;;;:::o
1
ipfs://23a236e2192cb9d47c38508288dcf5962d6228049780d084bedea3a49068f96b
Last modified 1yr ago